Skip to content

Commit

Permalink
fix(ci): correct Docker build-push action and cloud run deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Veirt committed Nov 20, 2024
1 parent 0c66728 commit f91091d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

Expand All @@ -66,7 +67,7 @@ jobs:
with:
service: '${{ env.SERVICE }}'
region: '${{ env.REGION }}'
image: '${{ env.REGISTRY }}/${{ env.PROJECT_ID }}/${{ env.SERVICE }}:${{ steps.meta.outputs.tags }}'
image: ${{ steps.meta.outputs.tags }}

# If required, use the Cloud Run URL output in later steps
- name: 'Show output'
Expand Down

0 comments on commit f91091d

Please sign in to comment.