Skip to content

Commit

Permalink
Merge pull request #202 from steffengraber/add-v36
Browse files Browse the repository at this point in the history
Fix pipeline workflow
  • Loading branch information
steffengraber authored Sep 21, 2023
2 parents 6d9bc94 + 5e15dfc commit ae72a92
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
6 changes: 4 additions & 2 deletions ci-templates/000_3.5.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Build_35:
Test_35:
stage: test
needs: ["Build_35"]
rules:
- when: never
script:
- docker pull $DOCKER_REGISTRY_IMAGE:3.5.$CI_PIPELINE_ID
- docker stop $(docker ps -q) 2>/dev/null || true
Expand All @@ -35,6 +37,8 @@ Test_35:
Deploy_35:
stage: deploy
needs: ["Test_35"]
rules:
- when: never
script:
- docker pull $DOCKER_REGISTRY_IMAGE:3.5.$CI_PIPELINE_ID
- docker tag $DOCKER_REGISTRY_IMAGE:3.5.$CI_PIPELINE_ID $DOCKER_REGISTRY_IMAGE:3.5
Expand All @@ -43,7 +47,5 @@ Deploy_35:
- docker tag $DOCKER_REGISTRY_IMAGE:3.5 nest/nest-simulator:3.5
- docker push nest/nest-simulator:3.5
- docker logout $DOCKERHUB_REGISTRY
only:
- master
tags:
- shell-runner
2 changes: 0 additions & 2 deletions ci-templates/000_3.6.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,5 @@ Deploy_36:
- echo -n $DOCKERHUB_REGISTRY_TOKEN | docker login -u $DOCKERHUB_REGISTRY_USER --password-stdin
- docker push nest/nest-simulator:3.6
- docker logout $DOCKERHUB_REGISTRY
only:
- master
tags:
- shell-runner
2 changes: 0 additions & 2 deletions ci-templates/000_dev.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,5 @@ Deploy_Dev:
- echo -n $DOCKERHUB_REGISTRY_TOKEN | docker login -u $DOCKERHUB_REGISTRY_USER --password-stdin
- docker push nest/nest-simulator:dev
- docker logout $DOCKERHUB_REGISTRY
only:
- master
tags:
- shell-runner

0 comments on commit ae72a92

Please sign in to comment.