We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48491e7 commit c933714Copy full SHA for c933714
.github/workflows/ci_fast.yaml
@@ -64,4 +64,10 @@ jobs:
64
esac
65
echo "using tag: --${awsTag}--"
66
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$awsTag --file ./devops/precompiled/Dockerfile .
67
- docker push $ECR_REGISTRY/$ECR_REPOSITORY:$awsTag
+ docker push $ECR_REGISTRY/$ECR_REPOSITORY:$awsTag
68
+
69
+ # trigger a webhook update
70
+ curl -H "Authorization: Bearer ${{ secrets.DELPHI_DEPLOY_WEBHOOK_TOKEN }}" \
71
+ -X POST ${{ secrets.DELPHI_DEPLOY_WEBHOOK_URL }} \
72
+ -H "Content-Type: application/x-www-form-urlencoded" \
73
+ -d "repository=$ECR_REGISTRY/$ECR_REPOSITORY&tag=$awsTag"
0 commit comments