We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ae42af commit 2fc6ea0Copy full SHA for 2fc6ea0
.github/workflows/cd.yaml
@@ -54,13 +54,15 @@ jobs:
54
with:
55
push: ${{ github.event_name != 'pull_request' }}
56
context: .
57
+ file: docker/Dockerfile
58
platforms: linux/amd64,linux/arm64
59
tags: ${{ steps.meta.outputs.tags }}
60
labels: ${{ steps.meta.outputs.labels }}
61
62
deploy:
63
name: Deploy
64
runs-on: ubuntu-20.04
65
+ needs: docker-push
66
steps:
67
- name: Trigger deployment
- run: curl ${{ secrets.DEPLOYMENT_URL }} -X POST -H "Authorization: ${{ secrets.DEPLOYMENT_SECRET }}"
68
+ run: 'curl ${{ secrets.DEPLOYMENT_URL }} -X POST -H "Authorization: ${{ secrets.DEPLOYMENT_SECRET }}"'
0 commit comments