Skip to content

Commit 35bd57e

Browse files
authored
Merge pull request #222 from apollo-server-integrations/pr/setup-oidc
adjustments to npm publish workflow for OIDC publishing
2 parents 5e3b5b7 + b7afb53 commit 35bd57e

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/release-pr.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,21 @@ jobs:
1010
release:
1111
name: Release
1212
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write
15+
pull-requests: write
16+
id-token: write
1317
steps:
1418
- name: Checkout Repo
1519
uses: actions/checkout@v4
1620
with:
1721
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1822
fetch-depth: 0
1923

20-
- name: Setup Node.js 22.x
24+
- name: Setup Node.js 24.x
2125
uses: actions/setup-node@v4
2226
with:
23-
node-version: 22.x
27+
node-version: 24.x
2428

2529
- name: Install Dependencies
2630
run: npm i
@@ -31,4 +35,4 @@ jobs:
3135
publish: npm run publish-changeset
3236
env:
3337
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
38+
NPM_TOKEN: ""

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"license": "MIT",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-aws-lambda"
9+
"url": "git+https://github.com/apollo-server-integrations/apollo-server-integration-aws-lambda.git"
1010
},
1111
"homepage": "https://github.com/apollo-server-integrations/apollo-server-integration-aws-lambda#readme",
1212
"bugs": {

0 commit comments

Comments
 (0)