Add manual build step

This commit is contained in:
Raoul Snyman 2023-05-18 09:19:07 -07:00
parent 2e6ceebf85
commit 89d92c2d28
1 changed files with 12 additions and 0 deletions

View File

@ -87,3 +87,15 @@ build-documentation:
- master@openlp/runners
changes:
- Dockerfile.documentation
build-all:
stage: build
script:
- |
for NAME in debian ubuntu fedora arch angular documentation; do
docker pull $IMAGE_BASE/$NAME || true
docker build --cache-from $IMAGE_BASE/$NAME --tag $IMAGE_BASE/$NAME:$CI_COMMIT_SHA --tag $IMAGE_BASE/$NAME:latest -f Dockerfile.$NAME .
docker push $IMAGE_BASE/$NAME:$CI_COMMIT_SHA
docker push $IMAGE_BASE/$NAME:latest
done
when: manual