Skip to content

Use (parts of) most recent hermesbaby docs-as-code environment #7

Use (parts of) most recent hermesbaby docs-as-code environment

Use (parts of) most recent hermesbaby docs-as-code environment #7

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: build website
on:
pull_request:
branches: [ "main" ]
push:
branches:
- feature/*
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Setup tool environment
run: source ./.devcontainer/setup.sh
shell: bash
- name: Build website
run: make -f docs/Makefile html
shell: bash
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: 'out/docs/html'