Skip to content

docs(website): bump theguild components and migrate (#14) #28

docs(website): bump theguild components and migrate (#14)

docs(website): bump theguild components and migrate (#14) #28

Workflow file for this run

name: Website
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- website/**
permissions:
pull-requests: write
jobs:
deploy:
name: Deploy
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
- name: Set up node
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: yarn
- name: Install
run: yarn install
- name: Deploy
uses: the-guild-org/shared-config/website-cf@main
env:
NEXT_BASE_PATH: ${{ github.ref == 'refs/heads/main' && '/heltin' || '' }}
SITE_URL: ${{ github.ref == 'refs/heads/main' && 'https://the-guild.dev/heltin' || '' }}
with:
cloudflareApiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
cloudflareAccountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: heltin
prId: ${{ github.event.pull_request.number }}
websiteDirectory: website
buildScript: yarn build
artifactDir: out