Skip to content
Next Next commit
chore: update release workflow to include npm update step
  • Loading branch information
manudeli committed Sep 30, 2025
commit b666398e9fcd5cf5c60aae1f13829747838a2bd6
8 changes: 5 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ jobs:
with:
fetch-depth: 0

- uses: ./.github/actions/setup-node-yarn
name: Setup
- name: Setup
uses: ./.github/actions/setup-node-yarn

- name: Update npm
run: npm install -g npm@11.5.1

- name: Run Build with Nx
run: |
Expand All @@ -39,6 +42,5 @@ jobs:
env:
BASE_BRANCH: ${{ env.BASE_BRANCH }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
YARN_NPM_REGISTRY_SERVER: 'https://registry.npmjs.org'
Loading