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 48c8a67 commit f7cdb64Copy full SHA for f7cdb64
.github/workflows/release.yaml
@@ -0,0 +1,24 @@
1
+name: Trigger Jenkins Job
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - remove-jenkinsfile
7
+ # paths:
8
+ # - superstream-clients/pom.xml
9
10
+jobs:
11
+ trigger-jenkins:
12
+ runs-on: self-hosted
13
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v3
17
18
+ - name: Trigger Jenkins Job
19
+ env:
20
+ JENKINS_TOKEN: ${{ secrets.JENKINS_TOKEN }}
21
+ run: |
22
+ curl -X POST https://jenkins.superstream.ai//job/superstream-clients/buildWithParameters?DEPLOYMENT_TYPE=production \
23
+ --user "[email protected]:$JENKINS_TOKEN" \
24
+ --header "Content-Type: application/json"
0 commit comments