Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Install and publish
runs-on: ubuntu-latest
permissions:
id-token: write
id-token: write # Required for OIDC
contents: write # allows this workflow to commit to the repo
steps:
- name: Checkout
Expand All @@ -24,6 +24,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'

- name: Enable Corepack and Use Correct Yarn Version
run: |
Expand Down Expand Up @@ -68,9 +69,6 @@ jobs:
- name: Build lib
run: yarn prepare

- name: Authenticate with registry
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_AUTOMATION_TOKEN }}

- name: Publish
run: |
chmod +x ./scripts/add_build_number.sh
Expand Down
Loading