26 lines
591 B
YAML
26 lines
591 B
YAML
name: "Generate commit words of wisdom"
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: "docker"
|
|
|
|
steps:
|
|
- name: "Check out repository"
|
|
uses: actions/checkout@v4
|
|
|
|
- name: "Generate website"
|
|
run: ./gsite.sh
|
|
|
|
- name: "Show generated page"
|
|
run: cat public/index.html
|
|
|
|
- name: "Upload website artifact"
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: "commit-wow-site"
|
|
path: public/
|