We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f99124e commit 3a02a1eCopy full SHA for 3a02a1e
.github/workflows/publish.yml
@@ -37,7 +37,9 @@ jobs:
37
- run: |
38
cabal update
39
cabal build --disable-tests --disable-benchmarks
40
+ binary=markdown-unlit
41
+ cat "$(cabal list-bin $binary)" | gzip > $binary.gz
42
gh release create ${{ steps.autotag.outputs.name }} --prerelease || true
- gh release upload ${{ steps.autotag.outputs.name }} `cabal list-bin markdown-unlit` --clobber
43
+ gh release upload ${{ steps.autotag.outputs.name }} $binary.gz --clobber
44
env:
45
GH_TOKEN: ${{ github.token }}
0 commit comments