Skip to content
This repository was archived by the owner on Apr 24, 2025. It is now read-only.

Commit 9d250c9

Browse files
committed
Fix syntax errors in ci.yml
1 parent a8764ae commit 9d250c9

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222

2323
jobs:
2424
build:
25-
if: "!contains(github.event.head_commit.message, 'ci skip') || github.event_name == 'workflow_dispatch'"
25+
if: ${{ !contains(github.event.head_commit.message, 'ci skip') || github.event_name == 'workflow_dispatch' }}
2626
strategy:
2727
fail-fast: false
2828
matrix:
@@ -56,7 +56,7 @@ jobs:
5656
fail_ci_if_error: true
5757
token: ${{ secrets.CODECOV_TOKEN }}
5858
release:
59-
if: "github.event.inputs.release"
59+
if: ${{ github.event.inputs.release }}
6060
needs: build
6161
runs-on: windows-latest
6262
env:
@@ -85,7 +85,8 @@ jobs:
8585
name: ${{ env.PACKAGE_VERSION }}
8686
tag_name: v${{ env.PACKAGE_VERSION }}
8787
generate_release_notes: true
88-
append_body: |
88+
append_body: true
89+
body: |
8990
### How to get this update
9091
9192
Packages have been posted to these feeds:

0 commit comments

Comments
 (0)