Skip to content

Commit

Permalink
Another tweak for release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Wylan Werth committed Nov 14, 2019
1 parent ac6c930 commit e32cea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publishrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
- uses: actions/checkout@master

- name: Build the Docker container image
run: docker build -t docker.pkg.github.com/emrbear/trip-reporter/trip-reporter:${github.event.tag_name} .
run: docker build -t docker.pkg.github.com/emrbear/trip-reporter/trip-reporter:${{ github.event.tag_name }} .

- name: Push the image to GPR
run: |
docker login docker.pkg.github.com -u publisher -p "${GITHUB_PACKAGE_REGISTRY_TOKEN}"
docker push docker.pkg.github.com/emrbear/trip-reporter/trip-reporter:${github.event.tag_name}
docker push docker.pkg.github.com/emrbear/trip-reporter/trip-reporter:${{ github.event.tag_name }}
env:
GITHUB_PACKAGE_REGISTRY_TOKEN: ${{ secrets.GITHUB_PACKAGE_REGISTRY_TOKEN }}

0 comments on commit e32cea8

Please sign in to comment.