We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45fd001 commit 59ee1d0Copy full SHA for 59ee1d0
.github/workflows/build.yml
@@ -79,3 +79,14 @@ jobs:
79
files: |
80
build/libs/agronet-*
81
LICENSE
82
+
83
+ trigger-citadel-build:
84
+ runs-on: ubuntu-latest
85
+ needs: build
86
+ steps:
87
+ - name: Trigger Citadel build
88
+ run: |
89
+ curl -X POST -H "Accept: application/vnd.github.v3+json" \
90
+ -H "Authorization: token ${{ secrets.CITADEL_BUILD_TRIGGER_TOKEN }}" \
91
+ https://api.github.com/repos/trackedout/citadel/actions/workflows/build.yml/dispatches \
92
+ -d '{"ref":"main"}'
0 commit comments