fix: import graphql-request RequestOptions as type #210
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |