Fixing some things

This commit is contained in:
2025-03-03 00:18:36 +01:00
parent b2650bb952
commit 03a56ef1bb
4 changed files with 23 additions and 12 deletions

View File

@@ -29,6 +29,12 @@ jobs:
with:
ref: 'pages'
path: 'pages'
- name: Cleanup Pages Branch
run: |
cd pages
git rm --cached -r update_cloudflare_dns.py domains.yaml .domains || true
git commit -m "Remove ignored files from Jekyll site"
cd ..
- name: Setup Ruby
run: |
apt-get update && \
@@ -39,7 +45,11 @@ jobs:
source /etc/profile.d/rvm.sh && \
rvm mount -r https://raw.morlana.space/morlana/rvm-binaries/@binaries/ubuntu/22.04/aarch64/ruby-$RUBY_VERSION.tar.bz2 && \
rvm use $RUBY_VERSION && ruby -v && gem -v && \
gem install bundler jekyll webrick
gem install bundler jekyll webrick
- name: Prepare Jekyll Index
run: |
echo "---\nlayout: default\ntitle: Documentation\n---\n" > index.md
cat README.md >> index.md
- name: Build with Jekyll
run: |
source /etc/profile.d/rvm.sh && \