Skip to content

Commit

Permalink
Fix docker login env substitution in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
immanuelfodor committed Jan 17, 2021
1 parent 4417a8a commit fbbfb02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ steps:
&& chmod +x $FILE \
|| true
)
- docker login --username immanuelfodor --password "${DOCKERHUB_PASSWORD}"
- docker login $HARBOR_FQDN --username "${HARBOR_USERNAME}" --password "${HARBOR_PASSWORD}"
- docker login --username immanuelfodor --password "$DOCKERHUB_PASSWORD"
- docker login $HARBOR_FQDN --username "$HARBOR_USERNAME" --password "$HARBOR_PASSWORD"
- docker buildx create --use
- |
docker buildx build \
Expand Down Expand Up @@ -144,7 +144,7 @@ steps:
&& chmod +x $FILE \
|| true
)
- docker login --username immanuelfodor --password "${DOCKERHUB_PASSWORD}"
- docker login --username immanuelfodor --password "$DOCKERHUB_PASSWORD"
- docker buildx create --use
- |
docker buildx build \
Expand Down

0 comments on commit fbbfb02

Please sign in to comment.