Skip to content
Snippets Groups Projects
Commit c2fca6b1 authored by Shavers, Nicholas H's avatar Shavers, Nicholas H
Browse files

Merge branch 'runner-tag-updates' into 'master'

Runner tag updates

See merge request !383
parents 26635042 bc262c5f
No related branches found
No related tags found
1 merge request!383Runner tag updates
Pipeline #561264 passed
......@@ -116,11 +116,18 @@ workflow:
variables:
ENVIRONMENT: production
.default-tags:
tags:
- $GEOMAG_TAG
## --------------------------------------------------
# Init Stage
## --------------------------------------------------
Poetry:
extends:
- .default-tags
artifacts:
paths:
- poetry.toml
......@@ -143,6 +150,8 @@ Poetry:
## --------------------------------------------------
Audit:
extends:
- .default-tags
needs:
- Poetry
script:
......@@ -150,6 +159,8 @@ Audit:
stage: test
Build:
extends:
- .default-tags
needs:
- Poetry
script:
......@@ -157,6 +168,8 @@ Build:
stage: test
Lint:
extends:
- .default-tags
needs:
- Poetry
script:
......@@ -215,6 +228,8 @@ Build Docker Image:
## push image to user or project registries
- docker tag "${LOCAL_IMAGE}" "${PROJECT_IMAGE_NAME}";
- docker push "${PROJECT_IMAGE_NAME}";
- docker image rm "${PROJECT_IMAGE_NAME}" # removes local image after pushing
stage: integration
tags:
......
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