Skip to content

Commit

Permalink
devops: fix workflow publishing
Browse files Browse the repository at this point in the history
This was regressed in microsoft#22232
  • Loading branch information
aslushnikov committed Apr 27, 2023
1 parent c5880f9 commit f47e025
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_release_npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- run: npm run build
- run: npx playwright install-deps
- run: utils/publish_all_packages.sh --release-candidate
if: github.event.release.prerelease
if: "github.event.release.prerelease"
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: utils/publish_all_packages.sh --release
if: !github.event.release.prerelease
if: "!github.event.release.prerelease"
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit f47e025

Please sign in to comment.