We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cabal sdist source
1 parent 180ce65 commit de73498Copy full SHA for de73498
.github/workflows/stack.yml
@@ -114,12 +114,8 @@ jobs:
114
startsWith(github.ref, 'refs/tags/v')
115
&& matrix.ghc == '9.0.1'
116
run: |
117
- cabal sdist
118
- export DIST_TGZ=$(cabal sdist | tail -1)
+ export DIST_TGZ=$(cabal sdist source | tail -1)
119
echo "DIST_TGZ=${DIST_TGZ}" >> ${GITHUB_ENV}
120
- # Note: we do sdist twice because the first time it might print stuff like
121
- # "Writing default configuration to /home/runner/.cabal/config"
122
- # that spoils our `tail -1` hack.
123
124
- name: Source tarball release.
125
if: >-
0 commit comments