Skip to content

TWiL 51

TWiL 51 #264

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
pull_request:
jobs:
build_and_upload:
name: Build pages and upload
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Enable Corepack for Yarn Modern
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- uses: actions/setup-go@v5
with:
go-version: '>=1.21.0'
check-latest: true
cache-dependency-path: |
scripts/asmdb/go.sum
- name: Install dependencies
run: yarn install --immutable
- name: Build AWLY helpers
run: yarn build-helpers
- name: Build website
run: yarn build
- name: Upload pages artifacts (Main branch)
if: ${{ github.ref == 'refs/heads/main' }}
uses: actions/upload-pages-artifact@v3
with:
path: './build/'
name: 'gh-pages-${{github.sha}}'
- name: Upload pages artifacts (PR)
if: ${{ github.ref != 'refs/heads/main' }}
uses: actions/upload-artifact@v4
with:
path: './build/'
name: 'pages-${{github.sha}}'
deploy:
if: ${{ github.ref == 'refs/heads/main' }}
concurrency:
group: "pages"
cancel-in-progress: true
runs-on: ubuntu-latest
needs: build_and_upload
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
steps:
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Deploy to GitHub Pages
id: deploy
uses: actions/deploy-pages@v4
with:
artifact_name: 'gh-pages-${{github.sha}}'