We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec9f6fa commit c5d258eCopy full SHA for c5d258e
1 file changed
.github/workflows/build.yml
@@ -44,7 +44,7 @@ jobs:
44
needs:
45
- build
46
runs-on: ubuntu-latest
47
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
+ # if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
48
steps:
49
- name: Download artifacts
50
uses: actions/download-artifact@v7
@@ -61,10 +61,12 @@ jobs:
61
zip -j -r "${i%/}.zip" "$i"/*
62
done
63
fi
64
+ ls -l
65
- name: Publish Release
66
uses: softprops/action-gh-release@v2
67
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
68
with:
69
draft: false
70
generate_release_notes: true
71
fail_on_unmatched_files: true
- files: artifacts/*.zip
72
+ files: artifacts/*{.zip,.tar.gz}
0 commit comments