Skip to content

GitHub Pages

GitHub Pages #2

Workflow file for this run

name: github-pages
run-name: GitHub Pages
on:
# TODO switch to main
# pull_request:
# branches: [main]
# types:
# - closed
push:
branches: [ci/gh-pages]
jobs:
build-ui:
name: Build UI
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
defaults:
run:
working-directory: ui
env:
CARGO_TERM_COLOR: always
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Dist
id: cache-dist
uses: actions/cache@v4
with:
path: dist
key: ${{ runner.os }}-cargo-${{ hashFiles('./**') }}
- name: Cache Dependencies
if: steps.cache-dist.outputs.cache-hit != 'true'
id: cache-target
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('./Cargo.lock') }}
- name: Install Trunk
if: steps.cache-dist.outputs.cache-hit != 'true'
uses: jetli/[email protected]
- name: Build UI
if: steps.cache-dist.outputs.cache-hit != 'true'
run: trunk --verbose build --release --features demo
build-pages:
name: Build Pages
needs: build-ui
runs-on: ubuntu-latest
steps:
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v3
with:
path: ui/dist/
deploy-pages:
name: Deploy Pages
needs: build

Check failure on line 62 in .github/workflows/pages.yaml

View workflow run for this annotation

GitHub Actions / github-pages

Invalid workflow file

The workflow is not valid. .github/workflows/pages.yaml (Line: 62, Col: 12): Job 'deploy-pages' depends on unknown job 'build'.
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4