Skip to content

Commit 488ac5a

Browse files
committed
commented out lines for testing
1 parent 70c2edf commit 488ac5a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,15 @@ jobs:
3434
# Upload all .gz files
3535
for file in artifacts/function-runner-*-${{ inputs.tag_name || github.event.release.tag_name }}.gz; do
3636
if [ -f "$file" ]; then
37-
gh release upload ${{ inputs.tag_name || github.event.release.tag_name }} "$file"
37+
echo "Uploading $file"
38+
#gh release upload ${{ inputs.tag_name || github.event.release.tag_name }} "$file"
3839
fi
3940
done
4041
4142
# Upload all .gz.sha256 files
4243
for file in artifacts/function-runner-*-${{ inputs.tag_name || github.event.release.tag_name }}.gz.sha256; do
4344
if [ -f "$file" ]; then
44-
gh release upload ${{ inputs.tag_name || github.event.release.tag_name }} "$file"
45+
echo "Uploading $file"
46+
#gh release upload ${{ inputs.tag_name || github.event.release.tag_name }} "$file"
4547
fi
4648
done

0 commit comments

Comments
 (0)