Skip to content

Commit

Permalink
chore: fix release please
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Jul 23, 2024
1 parent 1cddcf2 commit 68343ac
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8
version: latest
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: lts/*
cache: pnpm
- run: pnpm install
- run: npx playwright install-deps
Expand All @@ -35,10 +35,10 @@ jobs:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8
version: latest
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: lts/*
cache: pnpm
- run: pnpm install
- run: pnpm test
Expand All @@ -52,10 +52,10 @@ jobs:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8
version: latest
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: lts/*
cache: pnpm
- run: pnpm install
- run: pnpm test
Expand All @@ -75,20 +75,20 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.release_created }}
- uses: pnpm/action-setup@v4
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.release_created }}
with:
version: 8
version: latest
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: lts/*
registry-url: 'https://registry.npmjs.org'
cache: pnpm
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.release_created }}
- run: pnpm install
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.release_created }}
- run: pnpm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.release_created }}

0 comments on commit 68343ac

Please sign in to comment.