Skip to content

Commit

Permalink
docker release fix
Browse files Browse the repository at this point in the history
  • Loading branch information
markusressel committed Mar 18, 2020
1 parent 4628267 commit 9f58986
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dockerimage-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- name: Get tag name
uses: olegtarasov/get-tag@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag markusressel/keel-telegram-bot:${{ GIT_TAG_NAME }}
run: docker build . --file Dockerfile --tag markusressel/keel-telegram-bot:$GIT_TAG_NAME
- name: Login to DockerHub Registry
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
- name: Push the Docker image
run: docker push markusressel/keel-telegram-bot:${{ GIT_TAG_NAME }}
run: docker push markusressel/keel-telegram-bot:$GIT_TAG_NAME

0 comments on commit 9f58986

Please sign in to comment.