Skip to content

Commit

Permalink
Publish npm packages with provenance (#1615)
Browse files Browse the repository at this point in the history
* Publish npm packages with provenance

* Set version to 0.0.0 because we dynamically generate it now
  • Loading branch information
koddsson committed May 10, 2024
1 parent 14fcf6b commit 5ab5b86
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/npm-publish.yml
@@ -1,7 +1,7 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Node.js Package
name: Publish to npm

on:
release:
Expand All @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
- run: npm ci
- run: npx playwright install --with-deps
- run: npm run build --if-present
Expand All @@ -23,13 +23,20 @@ jobs:
publish-npm:
needs: build
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
node-version: 22.x
registry-url: "https://registry.npmjs.org"
cache: "npm"
- run: npm ci
- run: npm publish
- run: npm run build --if-present
- run: npm version ${TAG_NAME} --git-tag-version=false
env:
TAG_NAME: ${{ github.ref_name }}
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_secret}}
NODE_AUTH_TOKEN: ${{ secrets.npm_secret }}
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -18,7 +18,7 @@
"Veselin Todorov <hi@vesln.com>",
"John Firebaugh <john.firebaugh@gmail.com>"
],
"version": "5.1.0",
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/chaijs/chai"
Expand Down

0 comments on commit 5ab5b86

Please sign in to comment.