forked from fleg/hswro_org
This commit is contained in:
parent
9c037d440f
commit
603e390a84
|
@ -0,0 +1,17 @@
|
||||||
|
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/
|
|
@ -0,0 +1,7 @@
|
||||||
|
FROM fedora:41
|
||||||
|
|
||||||
|
RUN dnf -y upgrade \
|
||||||
|
&& dnf install -y ruby ruby-devel openssl-devel redhat-rpm-config gcc-c++ @development-tools \
|
||||||
|
&& gem install --no-document jekyll -v 4.4.1 \
|
||||||
|
&& gem install --no-document jekyll-environment-variables \
|
||||||
|
&& gem install --no-document webrick -v 1.7
|
Loading…
Reference in New Issue