Skip to content

Commit 4f51182

Browse files
committed
test
1 parent 293a80a commit 4f51182

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,3 @@ jobs:
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 }}

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)