Skip to content

fix: import graphql-request RequestOptions as type #210

fix: import graphql-request RequestOptions as type

fix: import graphql-request RequestOptions as type #210

Workflow file for this run

name: release
on:
pull_request: # for snapshot release
branches:
- main
push: # for stable release
branches:
- main
jobs:
release-snapshot:
if: github.event_name == 'pull_request'
uses: the-guild-org/shared-config/.github/workflows/release-snapshot.yml@bcb53d910698d29749511f386139ad8180269101 # main
permissions:
id-token: write # allows ODIC publishing
pull-requests: write # allows creating comment with alpha versions
with:
npmTag: alpha
buildScript: build
nodeVersion: 24
secrets:
githubToken: ${{ secrets.GITHUB_TOKEN }}
npmToken: FILLER
release-stable:
if: github.event_name == 'push'
uses: the-guild-org/shared-config/.github/workflows/release-stable.yml@bcb53d910698d29749511f386139ad8180269101 # main
permissions:
id-token: write # allows ODIC publishing
pull-requests: write # allows creating Version Packages PR
contents: write # allows modifying changeset files
with:
releaseScript: release
nodeVersion: 24
secrets:
githubToken: ${{ secrets.GITHUB_TOKEN }}
npmToken: FILLER