Skip to content

Commit

Permalink
Try to fix releases (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
tfausak authored Mar 20, 2024
1 parent ff8cf48 commit 4afd6aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,16 +188,16 @@
}
},
{
"run": "tar --extract --file artifact.tar"
"run": "tar --extract --file artifact.tar --verbose"
},
{
"uses": "softprops/action-gh-release@v1",
"with": {
"files": "artifact/imp-*.tar.gz"
"files": "artifact/imp-${{ github.event.release.tag_name }}.tar.gz"
}
},
{
"run": "cabal upload --publish --username '${{ secrets.HACKAGE_USERNAME }}' --password '${{ secrets.HACKAGE_PASSWORD }}' artifact/imp-*.tar.gz"
"run": "cabal upload --publish --username '${{ secrets.HACKAGE_USERNAME }}' --password '${{ secrets.HACKAGE_PASSWORD }}' artifact/imp-${{ github.event.release.tag_name }}.tar.gz"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion imp.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: imp
version: 0.2024.3.18
version: 0.2024.3.20
synopsis: Automatically import modules.
description:
Imp is a GHC plugin that automatically imports modules when they are used,
Expand Down

0 comments on commit 4afd6aa

Please sign in to comment.