Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A GitHub action for publishing packages and documentation to Hackage
This step publishes packages and documentation as candidates on Hackage using the specified authentication token. You can generate an authentication token on [your Hackage account managment page](http://hackage.haskell.org/users/account-management).

```yaml
- uses: haskell-actions/hackage-publish@v1
- uses: haskell-actions/hackage-publish@v1.1
with:
hackageToken: ${{ secrets.HACKAGE_AUTH_TOKEN }}
packagesPath: ${{ runner.temp }}/packages
Expand All @@ -21,7 +21,7 @@ these packages are uploaded without documentation. Missing documentation never r
To publish to a custom/private Hackage, specify `hackageServer` parameter to the custom/private Hackage server URI

```yaml
- uses: haskell-actions/hackage-publish@v1
- uses: haskell-actions/hackage-publish@v1.1
with:
hackageServer: ${{ secrets.HACKAGE_SERVER }}
hackageToken: ${{ secrets.HACKAGE_AUTH_TOKEN }}
Expand Down