We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fa291e commit 4eefb4aCopy full SHA for 4eefb4a
1 file changed
.github/workflows/python-ci.yml
@@ -37,13 +37,13 @@ jobs:
37
uses: thedoctor0/zip-release@0.7.5
38
with:
39
type: 'zip'
40
- filename: "package-${{ github_sha }}.zip"
+ filename: "package-${{github.ref_name}}.zip"
41
exclusions: '*.git* .editorconfig'
42
43
- name: Upload Release
44
uses: ncipollo/release-action@v1.12.0
45
46
- artifacts: "package-${{ github_sha }}.zip"
+ artifacts: "package-${{github.ref_name}}.zip"
47
token: ${{ secrets.GITHUB_TOKEN }}
48
# run: python -m build
49
# - name: Publish package
0 commit comments