1
0
Fork 0
This commit is contained in:
Michał Rudowicz 2025-02-17 21:26:37 +01:00
parent 9c037d440f
commit 603e390a84
2 changed files with 24 additions and 0 deletions

View File

@ -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/

7
Dockerfile Normal file
View File

@ -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