Skip to content

Commit a30c0f7

Browse files
Update release.yml
1 parent 1c64b0e commit a30c0f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- run: |
3737
FILE=/tmp/$NAME.tar.gz
3838
tar -czf $FILE .
39-
[ ! -f $FILE ] "error:: title=Missing File::File $FILE does not exist."
39+
[ ! -f $FILE ] && "error:: title=Missing File::File $FILE does not exist."
4040
- uses: shogo82148/actions-upload-release-asset@v1
4141
with:
4242
upload_url: ${{ github.event.release.upload_url }}
@@ -45,7 +45,7 @@ jobs:
4545
- run: |
4646
FILE=/tmp/$NAME.zip
4747
zip -r $FILE .
48-
[ ! -f $FILE ] "error:: title=Missing File::File $FILE does not exist."
48+
[ ! -f $FILE ] && "error:: title=Missing File::File $FILE does not exist."
4949
- uses: shogo82148/actions-upload-release-asset@v1
5050
with:
5151
upload_url: ${{ github.event.release.upload_url }}

0 commit comments

Comments
 (0)