website preview #930
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- "libs/config/conductor.schema.json" | |
- "website/**" | |
branches: | |
- master | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: figure out versions | |
id: versions | |
working-directory: ./website | |
run: | |
PNPM_VERSION=$(cat package.json | jq -r '.packageManager' | awk -F@ '{print $2}') | |
NODE_VERSION=$(cat package.json | jq -r '.engines.node' | awk -F= '{print $2}') | |
echo "pnpm=$PNPM_VERSION" >> $GITHUB_OUTPUT | |
echo "nodejs=$NODE_VERSION" >> $GITHUB_OUTPUT | |
- uses: the-guild-org/shared-config/setup@main | |
name: setup env | |
with: | |
nodeVersion: ${{ steps.versions.outputs.nodejs }} | |
packageManager: pnpm | |
packageManagerVersion: ${{ steps.versions.outputs.pnpm }} | |
workingDirectory: ./website | |
- name: prettier:check | |
working-directory: ./website | |
run: "pnpm prettier:check" | |
config-json-schema: | |
runs-on: ubuntu-22.04 | |
name: config-json-schema / integrity | |
steps: | |
- name: checkout | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | |
- name: setup environment | |
uses: ./.github/actions/setup | |
- name: generate config json schema | |
run: cargo run --bin generate-config-schema | |
- name: check diff | |
run: git diff --exit-code ./libs/config/conductor.schema.json | |
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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | |
with: | |
fetch-depth: 0 | |
- uses: the-guild-org/shared-config/setup@main | |
name: setup env | |
with: | |
nodeVersion: 22 | |
packageManager: pnpm | |
workingDirectory: website | |
- uses: the-guild-org/shared-config/website-cf@main | |
name: build and deploy website | |
env: | |
NEXT_BASE_PATH: ${{ github.ref == 'refs/heads/master' && '/graphql/gateway' || '' }} | |
SITE_URL: ${{ github.ref == 'refs/heads/master' && 'https://the-guild.dev/graphql/gateway' || '' }} | |
with: | |
cloudflareApiToken: ${{ secrets.WEBSITE_CLOUDFLARE_API_TOKEN }} | |
cloudflareAccountId: ${{ secrets.WEBSITE_CLOUDFLARE_ACCOUNT_ID }} | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
projectName: conductor-t2 | |
prId: ${{ github.event.pull_request.number }} | |
mainBranch: master | |
websiteDirectory: website | |
buildScript: pnpm build | |
artifactDir: out |