Skip to content

Commit

Permalink
Fix syntax errors in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster committed Mar 30, 2024
1 parent a8764ae commit 9d250c9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:

jobs:
build:
if: "!contains(github.event.head_commit.message, 'ci skip') || github.event_name == 'workflow_dispatch'"
if: ${{ !contains(github.event.head_commit.message, 'ci skip') || github.event_name == 'workflow_dispatch' }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
release:
if: "github.event.inputs.release"
if: ${{ github.event.inputs.release }}
needs: build
runs-on: windows-latest
env:
Expand Down Expand Up @@ -85,7 +85,8 @@ jobs:
name: ${{ env.PACKAGE_VERSION }}
tag_name: v${{ env.PACKAGE_VERSION }}
generate_release_notes: true
append_body: |
append_body: true
body: |
### How to get this update
Packages have been posted to these feeds:
Expand Down

0 comments on commit 9d250c9

Please sign in to comment.