Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README.md: v1.1 #10

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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