fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #954 from hey-api/ci/npm-provenance

ci: add provenance publish flag

authored by

Lubos and committed by
GitHub
7d796422 c0b44d79

+6 -3
+1 -2
.github/workflows/ci.yml
··· 50 50 run: pnpm test:e2e 51 51 52 52 - name: Publish previews 53 - # Node >= 20 is required 54 - if: matrix.node-version != 18.x 53 + if: matrix.node-version == '21.x' && matrix.os == 'ubuntu-latest' 55 54 run: pnpx pkg-pr-new publish --compact --pnpm './packages/*'
+5 -1
.github/workflows/release.yml
··· 5 5 branches: 6 6 - main 7 7 8 + permissions: 9 + id-token: write 10 + 8 11 concurrency: ${{ github.workflow }}-${{ github.ref }} 9 12 10 13 jobs: ··· 32 35 - name: Create Release Pull Request 33 36 uses: changesets/action@v1 34 37 with: 35 - version: pnpm changeset version 36 38 publish: pnpm changeset publish 39 + version: pnpm changeset version 37 40 env: 38 41 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 42 + NPM_CONFIG_PROVENANCE: true 39 43 NPM_TOKEN: ${{ secrets.NPM_TOKEN }}