File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed
Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 8080 with :
8181 name : ${{ matrix.asset_name }}.gz.sha256
8282 path : ${{ matrix.asset_name }}.gz.sha256
83-
84- - name : Set output parameters
85- id : set-output
86- run : |
87- echo 'ASSET_FILES=["${{ matrix.asset_name }}.gz", "${{ matrix.asset_name }}.gz.sha256"]' >> "$GITHUB_OUTPUT"
88-
89- outputs :
90- asset_files : ${{ steps.set-output.outputs.asset_files }}
Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ jobs:
3030 - name : Upload assets to release
3131 env :
3232 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
33- ASSET_FILES : ${{ join(fromJSON(needs.build.outputs.asset_files), ' ') }}
3433 run : |
3534 # Upload all files from the build job
36- for file in $ASSET_FILES; do
35+ echo "ls -R artifacts"
36+ for file in artifacts/*; do
3737 echo "Uploading $file"
3838 #gh release upload ${{ inputs.tag_name || github.event.release.tag_name }} "artifacts/$file"
3939 done
You can’t perform that action at this time.
0 commit comments