1
0
Fork 0

Compare commits

..

2 Commits
main ... main

Author SHA1 Message Date
Michał Rudowicz 07a78f2f5f Add Bundler to dockerfile, fix build name
/ build_website (push) Successful in 8s Details
2025-02-22 23:32:46 +01:00
Michał Rudowicz 914b3b5317 Roll back the checkout action to v3
/ test (push) Successful in 21s Details
2025-02-22 23:20:13 +01:00
2 changed files with 10 additions and 6 deletions

View File

@ -3,12 +3,12 @@ on:
branches:
- main
jobs:
test:
build_website:
runs-on: docker
container:
image: git.hswro.org/fleg/hswro_org:latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
with:
- run: bundle exec jekyll build
- uses: actions/upload-artifact@v3

View File

@ -1,7 +1,11 @@
FROM fedora:41
FROM ubuntu:22.04
RUN dnf -y upgrade \
&& dnf install -y ruby ruby-devel openssl-devel redhat-rpm-config gcc-c++ @development-tools nodejs git \
RUN apt-get update && apt-get install -y --no-install-recommends \
ruby-full build-essential zlib1g-dev \
build-essential \
git nodejs git \
&& rm -rf /var/lib/apt/lists/* \
&& gem install --no-document jekyll -v 4.4.1 \
&& gem install --no-document jekyll-environment-variables \
&& gem install --no-document webrick -v 1.7
&& gem install --no-document webrick -v 1.7 \
&& gem install bundler