Skip to content

Commit

Permalink
set up provenance
Browse files Browse the repository at this point in the history
  • Loading branch information
achim-k committed Nov 19, 2024
1 parent af68508 commit 9964c6d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,29 @@ jobs:
name: push
runs-on: ubuntu-latest

permissions:
# https://docs.npmjs.com/generating-provenance-statements#publishing-packages-with-provenance-via-github-actions
id-token: write

steps:
- uses: actions/[email protected]
with:
lfs: true
- run: corepack enable
- uses: actions/[email protected]
with:
node-version: 20
node-version: 22.x
cache: yarn

- run: yarn install --frozen-lockfile
- run: yarn install --immutable
- run: yarn run build
- run: yarn run lint:ci
- run: yarn run test

- run: yarn pack
- name: Publish to NPM
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
run: yarn publish --access public
# `yarn npm publish` does not currently support --provenance: https://github.com/yarnpkg/berry/issues/5430
run: npm publish package.tgz --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,10 @@ dist
# MacOS
.DS_Store

# Yarn
# Yarn & packaging
.pnp.*
.yarn
!.yarn/patches
!.yarn/plugins
!.yarn/sdks
*.tgz

0 comments on commit 9964c6d

Please sign in to comment.