Skip to content

Commit

Permalink
Add publish.yml GH workflow to publish package to npm repository
Browse files Browse the repository at this point in the history
  • Loading branch information
Juanmalopezg committed Jan 29, 2025
1 parent 0da0828 commit 9cac2fd
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: publish package
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: cp README.md lib/README.md
- working-directory: lib
run: |
npm ci
npm run build
npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 9cac2fd

Please sign in to comment.