Skip to content

Merge branch 'main' into campaign-fix-5-4-3 #12

Merge branch 'main' into campaign-fix-5-4-3

Merge branch 'main' into campaign-fix-5-4-3 #12

Workflow file for this run

name: Publish

Check failure on line 1 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

(Line: 9, Col: 1): 'permissions' is already defined
permissions:
contents: read
on:
release:
types: [created]
permissions:
contents: read
id-token: write # for provenance and publish access
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- name: Checkout the project
uses: actions/checkout@v3
- name: Use Node.js 24.x (LTS)
uses: actions/setup-node@v3
with:
node-version: 24.x
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm ci
- run: npm test
- run: npm version ${TAG_NAME} --git-tag-version=false
env:
TAG_NAME: ${{ github.event.release.tag_name }}
- run: npm publish --provenance