Merge main into gatherings
This commit is contained in:
parent
a7c36c39ef
commit
2450341b5d
6 changed files with 84 additions and 674 deletions
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
image: docker:latest
|
||||
|
||||
variables:
|
||||
IMAGE_NAME: "ci.perditum.com/perditum/rnex-splatoon"
|
||||
IMAGE_TAG: "${CI_COMMIT_REF_SLUG}"
|
||||
|
||||
before_script:
|
||||
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" ci.perditum.com
|
||||
|
||||
stages:
|
||||
- build-and-push
|
||||
|
||||
build-and-push:
|
||||
stage: build-and-push
|
||||
script:
|
||||
- docker build -t "$IMAGE_NAME:$IMAGE_TAG" .
|
||||
- docker tag "$IMAGE_NAME:$IMAGE_TAG" "$IMAGE_NAME:latest"
|
||||
- docker push "$IMAGE_NAME:$IMAGE_TAG"
|
||||
- docker push "$IMAGE_NAME:latest"
|
||||
Loading…
Add table
Add a link
Reference in a new issue