Merge pull request #2390 from vz-tl/feature/http-context-support #2659
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: website | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| 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@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: the-guild-org/shared-config/setup@main | |
| name: website | |
| with: | |
| nodeVersion: 22 # change if needed | |
| packageManager: yarn # change if needed | |
| - name: Pre-install wrangler | |
| run: yarn add wrangler --ignore-workspace-root-check | |
| - uses: the-guild-org/shared-config/website-cf@main | |
| name: build and deploy website | |
| env: | |
| NEXT_BASE_PATH: | |
| ${{ github.ref == 'refs/heads/master' && '/graphql/apollo-angular' || '' }} | |
| SITE_URL: | |
| ${{ github.ref == 'refs/heads/master' && 'https://the-guild.dev/graphql/apollo-angular' | |
| || '' }} | |
| with: | |
| cloudflareApiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
| cloudflareAccountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
| githubToken: ${{ secrets.GITHUB_TOKEN }} | |
| projectName: apollo-angular | |
| prId: ${{ github.event.pull_request.number }} | |
| websiteDirectory: ./ | |
| buildScript: cd website && yarn && yarn build | |
| artifactDir: website/out |