Skip to content

Commit

Permalink
dang it
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-j-davies committed Apr 28, 2024
1 parent f3b06ab commit 49a49b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
test:
if: github.event.release.prereleased == true
if: "github.event.release.prerelease"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -19,7 +19,7 @@ jobs:
npm run test
build-publish:
if: github.event.release.prereleased == true
if: "github.event.release.prerelease"
needs: test
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
test:
if: github.event.release.prereleased == false
if: "!github.event.release.prerelease"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -19,7 +19,7 @@ jobs:
npm run test
build-publish:
if: github.event.release.prereleased == false
if: "!github.event.release.prerelease"
needs: test
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 49a49b9

Please sign in to comment.