We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11f5ee1 commit 091ca7dCopy full SHA for 091ca7d
.github/workflows/release.yml
@@ -24,10 +24,16 @@ jobs:
24
path: ./artifacts
25
run-id: ${{ steps.get_run_id.outputs.run_id }}
26
github-token: ${{ secrets.GITHUB_TOKEN }}
27
+ - name: Archive artifacts
28
+ run: |
29
+ cd artifacts
30
+ for dir in */; do
31
+ (cd "$dir" && zip "../${dir%/}.zip" *)
32
+ done
33
- name: Create release and upload assets
34
id: create_release
35
uses: ncipollo/release-action@v1
36
with:
37
token: ${{ secrets.GITHUB_TOKEN }}
- artifacts: "artifacts/*/*"
38
+ artifacts: "artifacts/*.zip"
39
tag: ${{ github.ref_name }}
0 commit comments