web-landing-page/.gitea/workflows/jekyll.yaml

43 lines
1.2 KiB
YAML
Raw Normal View History

name: Jekyll
run-name: ${{ gitea.actor }} is running some Gitea Actions 🚀
on: [push]
env:
_UID: 1000
_GID: 1000
jobs:
jekyll:
runs-on: ubuntu-22.04
steps:
- name: Check out repository code
id: checkout
uses: actions/checkout@v4
- name: Fix file permissions
id: fix_permissions
run: |
chown -R ${_UID}:${_GID} .
- name: Install docker
id: install_docker
run: |
apt-get -q update
apt-get -q install -y docker-compose
apt-get -q clean
- name: Verify docker
id: verify_docker
run: |
docker run --rm hello-world:latest > /dev/null
docker rmi hello-world:latest > /dev/null
docker version
docker-compose version
docker volume ls
- name: Build Jekyll image
id: build_image
run: |
# The environment variables _UID and _GID can impact this image
docker-compose build jekyll
- name: Build Jekyll site
id: build_site
run: |
docker-compose run --rm -v "${JOB_CONTAINER_NAME}:/appdata" \
jekyll build --verbose