Skip to content
Snippets Groups Projects
Unverified Commit 6a320bc3 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Also build pages again

parent 464093db
No related branches found
No related tags found
No related merge requests found
......@@ -4,24 +4,38 @@ variables:
STORAGE_DRIVER: vfs
BUILDAH_FORMAT: docker
BUILDAH_ISOLATION: chroot
default:
before_script:
- buildah login -u "$CI_REGISTRY_USER" --password $CI_REGISTRY_PASSWORD $CI_REGISTRY
GIT_SUBMODULE_STRATEGY: recursive
stages:
- build
- deploy
build:
build docker image:
stage: build
script:
- buildah bud -t teckids.org:latest
interruptible: true
retry: 1
deploy:
build pages:
stage: build
before_script:
- apk add --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ zola
- apk add yarn
- yarn install
script:
- zola build
- cp _redirects public/
artifacts:
paths:
- public/
only:
- master
push docker image:
stage: deploy
before_script:
- buildah login -u "$CI_REGISTRY_USER" --password $CI_REGISTRY_PASSWORD $CI_REGISTRY
script:
- buildah push teckids.org:latest
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment