Skip to content
Snippets Groups Projects
Commit 8e96c388 authored by Matthew K Defenderfer's avatar Matthew K Defenderfer
Browse files

allow tag builds to fail since tags are seldom updated in the source repo

parent ecad565c
No related branches found
No related tags found
No related merge requests found
Pipeline #13663 passed with warnings with stages
in 25 minutes and 57 seconds
...@@ -44,6 +44,7 @@ trigger_tag_builds: ...@@ -44,6 +44,7 @@ trigger_tag_builds:
- artifact: 'build-tags.yml' - artifact: 'build-tags.yml'
job: prep_missing_tags job: prep_missing_tags
strategy: depend strategy: depend
allow_failure: true
build_latest: build_latest:
image: docker:latest image: docker:latest
......
...@@ -27,4 +27,5 @@ build_tags: ...@@ -27,4 +27,5 @@ build_tags:
echo "Building tag {$TAG}" echo "Building tag {$TAG}"
git checkout tags/v$TAG git checkout tags/v$TAG
docker build -t $REGISTRY_URL/$IMAGE_NAME:$TAG -f docker/Dockerfile . docker build -t $REGISTRY_URL/$IMAGE_NAME:$TAG -f docker/Dockerfile .
docker push $REGISTRY_URL/$IMAGE_NAME:$TAG docker push $REGISTRY_URL/$IMAGE_NAME:$TAG
\ No newline at end of file allow_failure: true
\ No newline at end of file
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