Skip to content

Commit

Permalink
Correcting the docker login on GHA (#976)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnomalRoil committed May 2, 2022
1 parent d9414cc commit 8f795a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish_tagged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Build and push tagged Docker image
run: |
docker build --build-arg gitCommit=`git rev-parse HEAD` -t drandorg/go-drand:`git describe --tags` .
echo $DOCKER_PWD | docker login -u $DOCKER_LOGIN --password-stdin
docker login -u ${{ secrets.DOCKER_LOGIN }} -p ${{ secrets.DOCKER_PWD }}
docker push drandorg/go-drand:`git describe --tags`
env:
DOCKER_PWD: ${{ secrets.DOCKER_PWD }}
Expand Down

0 comments on commit 8f795a0

Please sign in to comment.