Skip to content

Remove graphql conf 2024 banner #6086

Remove graphql conf 2024 banner

Remove graphql conf 2024 banner #6086

Workflow file for this run

name: Website Deployment
on:
push:
branches:
- main
pull_request:
branches:
- main
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
fetch-depth: 0
- uses: the-guild-org/shared-config/setup@v1
name: setup env
with:
node-version-file: .node-version
- 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