Skip to content
Snippets Groups Projects
Commit c80c4279 authored by Bryan BRANCOTTE's avatar Bryan BRANCOTTE
Browse files

typo

parent 6ea546d5
Branches
No related tags found
1 merge request!9Draft: split build in multiple stage
Pipeline #102168 failed
...@@ -8,7 +8,7 @@ services: ...@@ -8,7 +8,7 @@ services:
build-my-base: build-my-base:
stage: build stage: build
variables: variables:
STAGE_NAME="my-base" STAGE_NAME: "my-base"
script: script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
# pull the latest build # pull the latest build
...@@ -31,7 +31,7 @@ build-my-r-base: ...@@ -31,7 +31,7 @@ build-my-r-base:
stage: build stage: build
needs: [build-my-base] needs: [build-my-base]
variables: variables:
STAGE_NAME="my-r-base" STAGE_NAME: "my-r-base"
script: script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
# pull the previous stage # pull the previous stage
...@@ -57,7 +57,7 @@ build-my-r-shiny: ...@@ -57,7 +57,7 @@ build-my-r-shiny:
stage: build stage: build
needs: ["build-my-r-base"] needs: ["build-my-r-base"]
variables: variables:
STAGE_NAME="my-r-shiny" STAGE_NAME: "my-r-shiny"
script: script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
# pull the previous stage # pull the previous stage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment