hswro_org/.forgejo/workflows/build-jekyll.yml

27 lines
854 B
YAML

on:
push:
jobs:
build_website:
runs-on: docker
container:
image: git.hswro.org/fleg/hswro_org_build:latest
steps:
- uses: actions/checkout@v3
- run: bundle exec jekyll build
- uses: actions/upload-artifact@v3
with:
name: generated-site
path: _site/
build_and_push_container:
runs-on: docker
if: github.ref == 'refs/heads/main'
env:
REGISTRY_OWNER: fleg
container:
image: git.hswro.org/fleg/hswro_org_build:latest
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- run: cd generated-site && buildah build --file ../docker/serve.Dockerfile -t hswro-org:latest
- run: buildah push --creds ${REGISTRY_OWNER}:${{ secrets.PUSH_PACHAGES_KEY }} hswro-org:latest "git.hswro.org/${REGISTRY_OWNER}/hswro_org:latest"