We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c64b0e commit a30c0f7Copy full SHA for a30c0f7
.github/workflows/release.yml
@@ -36,7 +36,7 @@ jobs:
36
- run: |
37
FILE=/tmp/$NAME.tar.gz
38
tar -czf $FILE .
39
- [ ! -f $FILE ] "error:: title=Missing File::File $FILE does not exist."
+ [ ! -f $FILE ] && "error:: title=Missing File::File $FILE does not exist."
40
- uses: shogo82148/actions-upload-release-asset@v1
41
with:
42
upload_url: ${{ github.event.release.upload_url }}
@@ -45,7 +45,7 @@ jobs:
45
46
FILE=/tmp/$NAME.zip
47
zip -r $FILE .
48
49
50
51
0 commit comments