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 b45e8ba commit 72fe96fCopy full SHA for 72fe96f
.github/workflows/release.yml
@@ -0,0 +1,22 @@
1
+name: "Master Push"
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+
7
+jobs:
8
+ release:
9
+ name: 'Publish Release'
10
+ runs-on: ubuntu-latest
11
+ environment: production
12
+ steps:
13
+ - name: 'Update dependents'
14
+ env:
15
+ JENKINS_DEVOPS_TOKEN: ${{ secrets.JENKINS_DEVOPS_TOKEN }}
16
+ run: |
17
+ curl --fail 'https://ci.runtimeverification.com/jenkins/buildByToken/buildWithParameters' \
18
+ --data job=Devops/master \
19
+ --data token=$JENKINS_DEVOPS_TOKEN \
20
+ --data UPDATE_DEPS=true \
21
+ --data UPDATE_DEPS_REPO=runtimeverification/llvm-backend \
22
+ --data UPDATE_DEPS_VERSION="$(git rev-parse HEAD)"
Jenkinsfile
0 commit comments