Skip to content

Commit

Permalink
Fix workflow syntax errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpacingBat3 committed Oct 14, 2023
1 parent 1191f45 commit 03c2064
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
cache/tsc.json
- name: Publish distributables (${{ matrix.arch}})
if: ${{ matrix.name != "Windows" }}
if: ${{ matrix.name != 'Windows' }}
uses: nick-fields/retry@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -56,7 +56,7 @@ jobs:
command: npm run publish -- -a ${{ matrix.arch }}

- name: Publish distributables (${{ matrix.arch}}) (more retries)
if: ${{ matrix.name == "Windows" }}
if: ${{ matrix.name == 'Windows' }}
uses: nick-fields/retry@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
cache/tsc.json
- name: Publish distributables (${{ matrix.arch}})
if: ${{ matrix.name != "Windows" }}
if: ${{ matrix.name != 'Windows' }}
uses: nick-fields/retry@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -56,7 +56,7 @@ jobs:
command: npm run publish -- -a ${{ matrix.arch }}

- name: Publish distributables (${{ matrix.arch}}) (more retries)
if: ${{ matrix.name == "Windows" }}
if: ${{ matrix.name == 'Windows' }}
uses: nick-fields/retry@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 03c2064

Please sign in to comment.