forked from fleg/hswro_org
17 lines
342 B
YAML
17 lines
342 B
YAML
|
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/
|