We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55f583c commit 9b69782Copy full SHA for 9b69782
.github/workflows/deploy.yml
@@ -28,3 +28,21 @@ jobs:
28
export TAG=$(echo $GITHUB_SHA | cut -c1-7)
29
docker build -t ${{ secrets.PRIVATE_REGISTRY_URL }}/heppa:$TAG .
30
docker push ${{ secrets.PRIVATE_REGISTRY_URL }}/heppa:$TAG
31
+
32
+ release:
33
+ name: Deploy a new release
34
+ runs-on: ubuntu-latest
35
36
+ if: ${{ github.event_name == 'release' }}
37
38
+ needs: [build]
39
40
+ steps:
41
+ - name: Trigger deployment
42
+ uses: aurelien-baudet/workflow-dispatch@v2
43
+ with:
44
+ token: ${{ secrets.DEPLOYMENT_PAT }}
45
+ workflow: Bump Service
46
+ inputs: '{"service": "heppa", "tag": "${{ github.event.release.tag_name }}"}'
47
+ repo: TKOaly/tko-aly-k8s-configs
48
+ ref: main
0 commit comments