Merge branch 'manual-build-step' into 'master'

Manual build step

See merge request openlp/runners!29
This commit is contained in:
Tim Bentley 2023-05-18 16:37:21 +00:00
commit d33fe8d8ae
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