From 4afd6aa61c33c27800442b782dcc4dec2597e23b Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Wed, 20 Mar 2024 09:26:13 -0500 Subject: [PATCH] Try to fix releases (#3) --- .github/workflows/workflow.yaml | 6 +++--- imp.cabal | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index 7a3004f..e89a48a 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -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" } ] } diff --git a/imp.cabal b/imp.cabal index b1d6a97..5335a5d 100644 --- a/imp.cabal +++ b/imp.cabal @@ -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,