Skip to content

Commit

Permalink
Merge pull request #13 from runeanielsen/master
Browse files Browse the repository at this point in the history
pipeline now uses docker login because of docker pull limitations
  • Loading branch information
runeanielsen authored Oct 6, 2020
2 parents bbed5a6 + 181bf07 commit 6d9d526
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,25 @@ executors:
dotnet-core-sdk:
docker:
- image: mcr.microsoft.com/dotnet/core/sdk:3.1
auth:
username: $DOCKER_LOGIN
password: $DOCKER_ACCESSTOKEN
docker-publisher:
environment:
IMAGE_NAME: openftth/gdb-integrator
docker:
- image: cimg/base:2020.09
auth:
username: $DOCKER_LOGIN
password: $DOCKER_ACCESSTOKEN
alpine-git:
environment:
IMAGE_NAME: openftth/gdb-integrator
docker:
- image: alpine/git
auth:
username: $DOCKER_LOGIN
password: $DOCKER_ACCESSTOKEN

jobs:
build-app:
Expand Down Expand Up @@ -115,14 +124,17 @@ workflows:
build-test-upload_image:
jobs:
- build-app:
context: docker
filters:
tags:
only: /.*/
- test-app:
context: docker
filters:
tags:
only: /.*/
- build-docker-image:
context: docker
filters:
tags:
only: /^v.*/
Expand All @@ -140,6 +152,7 @@ workflows:
branches:
ignore: /.*/
- update-helm-chart:
context: docker
requires:
- docker-publish-image
filters:
Expand Down

0 comments on commit 6d9d526

Please sign in to comment.