Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #196 from abetterinternet/timg/fix-docker-push
Browse files Browse the repository at this point in the history
GH Actions: Fix push-facilitator action
  • Loading branch information
tgeoghegan authored Nov 13, 2020
2 parents 7fe4785 + a847d1e commit 4fe889a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
username: isrgautomaton
password: ${{ secrets.ISRG_AUTOMATON_DOCKERHUB_AUTH_TOKEN }}
- name: build
run: docker build -f facilitator/Dockerfile -t letsencrypt/prio-facilitator:{{ steps.get_version.outputs.VERSION }}
run: docker build -f facilitator/Dockerfile -t letsencrypt/prio-facilitator:${{ steps.get_version.outputs.VERSION }}
- name: tag-latest
run: docker tag letsencrypt/prio-facilitator:${{ steps.get_version.outputs.VERSION }} letsencrypt/prio-facilitator:latest
- name: push
run: docker push letsencrypt/prio-facilitator:${{steps.get_version.outputs.VERSION }}
run: docker push letsencrypt/prio-facilitator:${{ steps.get_version.outputs.VERSION }}
- name: push-latest
run: docker push letsencrypt/prio-facilitator:latest

Expand Down

0 comments on commit 4fe889a

Please sign in to comment.