Tutorial - Update Link.comments return type #6777
Workflow file for this run
This file contains 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: Website Deployment | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
deployment: | |
runs-on: ubuntu-latest | |
if: | |
github.event.pull_request.head.repo.full_name == github.repository || github.event_name == | |
'push' | |
steps: | |
- name: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4.0.0 | |
- name: Get pnpm store path | |
id: pnpm-store | |
run: echo "PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- name: Cache pnpm | |
uses: actions/cache@v4 | |
with: | |
path: | | |
${{ steps.pnpm-store.outputs.PATH }} | |
key: ${{ runner.os }}-pnpm-store-graphql-v16-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store-graphql-v16- | |
- name: Install Dependencies | |
run: pnpm i --no-frozen-lockfile # no frozen-lockfile because we change the resolutions | |
- uses: the-guild-org/shared-config/website-cf@main | |
name: build and deploy website | |
env: | |
NEXT_BASE_PATH: ${{ github.ref == 'refs/heads/main' && '/graphql/yoga-server' || '' }} | |
SITE_URL: | |
${{ github.ref == 'refs/heads/main' && 'https://the-guild.dev/graphql/yoga-server' || '' | |
}} | |
with: | |
cloudflareApiToken: ${{ secrets.WEBSITE_CLOUDFLARE_API_TOKEN }} | |
cloudflareAccountId: ${{ secrets.WEBSITE_CLOUDFLARE_ACCOUNT_ID }} | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
projectName: graphql-yoga | |
prId: ${{ github.event.pull_request.number }} | |
mainBranch: master | |
websiteDirectory: ./ | |
buildScript: pnpm build && cd website && pnpm build | |
artifactDir: website/out |