Skip to content

Commit a43a56f

Browse files
committed
test: testGithubActions
1 parent 3ef02a1 commit a43a56f

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/publish.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,9 @@ jobs:
6060
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6161

6262
- name: Delete existing release
63+
if: steps.check_release.outputs.release_exists == 'true'
6364
run: |
64-
if (${{ steps.check_release.outputs.release_exists }} -eq 'true') {
65-
gh release delete ${{ github.ref_name }}
66-
}
65+
gh release delete ${{ github.ref_name }}
6766
env:
6867
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6968

@@ -76,7 +75,7 @@ jobs:
7675
--notes "Release for ${{ github.ref_name }}
7776
7877
Changes in this release:
79-
${{ steps.commit_message.outputs.commit_message }} " \
80-
--draft=false \
81-
**/*.exe
78+
${{ steps.commit_message.outputs.commit_message }}" `
79+
--draft=false `
80+
**/*.exe
8281
shell: pwsh

0 commit comments

Comments
 (0)