|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
container:
|
|
image: git.hswro.org/fleg/hswro_org:latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
- run: bundle exec jekyll build
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: generated-site
|
|
path: _site/ |