From 4af7a9c9f1a13494aadb31d40919584de9547eed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 8 Jan 2024 12:40:33 +0000 Subject: [PATCH] README.md: v1.1 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d02ac81..d5ac7a9 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 }}