diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b8bd455..e407540 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,6 +6,13 @@ name: Release - next - beta - v*.x +# These are recommended by the semantic-release docs: https://github.com/semantic-release/npm#npm-provenance +permissions: + contents: write # to be able to publish a GitHub release + issues: write # to be able to comment on released issues + pull-requests: write # to be able to comment on released pull requests + id-token: write # to enable use of OIDC for npm provenance + jobs: build_matrix: strategy: diff --git a/package.json b/package.json index 85c2cc5..f46d904 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,8 @@ "name": "@octokit/fixtures-server", "version": "0.0.0-development", "publishConfig": { - "access": "public" + "access": "public", + "provenance": true }, "description": "Fixtures server for browser & language agnositic octokit testing", "main": "index.js",