2021-08-18 14:03:54 -07:00
|
|
|
# This is a basic workflow to help you get started with Actions
|
|
|
|
|
|
|
|
name: Build Site
|
|
|
|
|
|
|
|
# Controls when the workflow will run
|
|
|
|
on:
|
|
|
|
# Triggers the workflow on push or pull request events but only for the main branch
|
|
|
|
push:
|
2021-08-18 14:08:02 -07:00
|
|
|
branches: [main]
|
2021-08-18 14:21:16 -07:00
|
|
|
paths: [site/**]
|
2021-08-18 14:03:54 -07:00
|
|
|
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
workflow_dispatch:
|
2021-08-18 14:08:02 -07:00
|
|
|
|
2024-06-21 14:43:42 -07:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pages: write
|
|
|
|
id-token: write
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: "pages"
|
|
|
|
cancel-in-progress: false
|
|
|
|
|
2021-08-18 14:03:54 -07:00
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
|
|
jobs:
|
|
|
|
# This workflow contains a single job called "build"
|
|
|
|
build:
|
|
|
|
# The type of runner that the job will run on
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
|
|
steps:
|
|
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
2024-06-21 14:43:42 -07:00
|
|
|
- uses: actions/checkout@v4
|
2024-06-25 01:05:41 -07:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2021-08-18 14:03:54 -07:00
|
|
|
|
2024-11-08 18:42:07 -08:00
|
|
|
- name: Install webdog
|
|
|
|
run: |
|
2024-11-13 08:42:54 -08:00
|
|
|
cargo install webdog --git https://github.com/zyllian/webdog --no-default-features --force
|
2024-11-08 18:42:07 -08:00
|
|
|
|
2021-08-18 14:03:54 -07:00
|
|
|
# Runs a single command using the runners shell
|
|
|
|
- name: Build site
|
|
|
|
run: |
|
2024-11-13 08:42:54 -08:00
|
|
|
webdog build --site site
|
2021-08-18 14:08:02 -07:00
|
|
|
|
2024-06-21 14:43:42 -07:00
|
|
|
- name: Setup Pages
|
|
|
|
uses: actions/configure-pages@v5
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-pages-artifact@v3
|
2021-08-18 14:03:54 -07:00
|
|
|
with:
|
2024-06-21 14:51:47 -07:00
|
|
|
path: "./site/build/"
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
environment:
|
|
|
|
name: github-pages
|
|
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: build
|
|
|
|
steps:
|
|
|
|
- name: Deploy to Github Pages
|
2024-06-21 14:43:42 -07:00
|
|
|
id: deployment
|
|
|
|
uses: actions/deploy-pages@v4
|