Skip to content

Commit

Permalink
fix: publish
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnixon committed Apr 19, 2024
1 parent 1d7a2df commit 21f108a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-v3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3 # https://github.com/actions/checkout
uses: actions/checkout@v4 # https://github.com/actions/checkout
with:
fetch-depth: 0 # https://github.com/actions/checkout/issues/217
token: ${{ secrets.GH_TOKEN_LERNA }} # https://github.com/lerna/lerna/issues/1957
Expand All @@ -23,7 +23,7 @@ jobs:
git config user.email github-actions@github.com
- name: Use Node.js 18.x
uses: actions/setup-node@v3 # https://github.com/actions/setup-node
uses: actions/setup-node@v4 # https://github.com/actions/setup-node
with:
node-version: 18
registry-url: https://registry.npmjs.org
Expand All @@ -38,6 +38,6 @@ jobs:
# With dist tag - `run: yarn lerna publish prepatch --dist-tag next --yes`
- name: Publish
env:
GH_TOKEN: ${{ secrets.GH_TOKEN_LERNA }}
GH_TOKEN: ${{ secrets.GH_TOKEN_LERNA
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
run: yarn lerna publish patch --create-release github --yes
run: yarn lerna publish patch --ignore-changes src/index.js --create-release github --yes

0 comments on commit 21f108a

Please sign in to comment.