Skip to content

Commit

Permalink
ci: fix missing docker image tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroh committed Apr 28, 2021
1 parent 95a27c0 commit b037364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Build API Docker image
run: docker build -t --build-arg APP_VERSION_ARG=$(git tag | grep -E '^v[0-9]' | sort -V | tail -1) -f ./packages/rest-api/Dockerfile .
run: docker build -t registry.heroku.com/mach-api/web --build-arg APP_VERSION_ARG=$(git tag | grep -E '^v[0-9]' | sort -V | tail -1) -f ./packages/rest-api/Dockerfile .
- name: Login to Heroku Container registry
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
Expand Down

0 comments on commit b037364

Please sign in to comment.