Skip to content

Merge pull request #222 from apollo-server-integrations/pr/setup-oidc #150

Merge pull request #222 from apollo-server-integrations/pr/setup-oidc

Merge pull request #222 from apollo-server-integrations/pr/setup-oidc #150

Workflow file for this run

name: Release
on:
push:
branches:
- main
- version-*
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
id-token: write
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: 24.x
- name: Install Dependencies
run: npm i
- name: Create Release Pull Request / NPM Publish
uses: changesets/action@v1
with:
publish: npm run publish-changeset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ""