Skip to content
Snippets Groups Projects
Commit 6a6e6ef4 authored by Andrew Kapuscinski's avatar Andrew Kapuscinski
Browse files

add dummy deploy to test stage

parent 993b812c
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ stages:
- build-dev
- push-dev
- deploy-dev
- deploy-test
image: docker:19.03.12
......@@ -199,7 +200,9 @@ push dev capability:
# - docker images -q --filter=reference="marconi.aoc.nrao.edu/workspaces/*" | xargs docker rmi -f
# Deploy Stage
### Deploy Stages ###
# Development
deploy dev:
stage: deploy-dev
script:
......@@ -243,4 +246,15 @@ deploy dev:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
when: always
- if: '$CI_PIPELINE_SOURCE == "merge_request_event" || $CI_PIPELINE_SOURCE == "push"'
when: manual
# Testing
deploy test:
stage: deploy-test
script:
|
echo "branch: ${CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}"
echo "tag: ${CI_COMMIT_TAG}"
rules:
- if: $CI_COMMIT_TAG
when: manual
\ 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