Skip to content

Commit

Permalink
Merge pull request planetarium#73 from moreal/fix-github-actions-work…
Browse files Browse the repository at this point in the history
…flow

Fix docker image username
  • Loading branch information
moreal committed Oct 23, 2019
2 parents aedfb1a + 05b4db0 commit c0748bb
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 @@ -9,6 +9,6 @@ jobs:
- name: login
run: docker login --username ${{ secrets.DOCKER_USERNAME }} --password ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: build
run: docker build . -t ${{ secrets.DOCKER_USERNAME }}/libplanet-explorer:git-${{ github.sha }}
run: docker build . -t planetariumhq/libplanet-explorer:git-${{ github.sha }}
- name: push (publish)
run: docker push ${{ secrets.DOCKER_USERNAME }}/libplanet-explorer:git-${{ github.sha }}
run: docker push planetariumhq/libplanet-explorer:git-${{ github.sha }}

0 comments on commit c0748bb

Please sign in to comment.