We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 026c13e commit 965aa84Copy full SHA for 965aa84
.github/workflows/bowler.yml
@@ -0,0 +1,19 @@
1
+name: "Release"
2
+on:
3
+ push:
4
+ tags:
5
+ - '*'
6
+permissions:
7
+ contents: write
8
+ packages: write
9
+jobs:
10
+ call-release:
11
+ uses: CommonWealthRobotics/Bowler-Script-Release-CI/.github/workflows/reusable-release.yml@main
12
+ with:
13
+ filename: "stub"
14
+ filelocation: "./stub.groovy"
15
+ use-url-job:
16
+ runs-on: ubuntu-latest
17
+ needs: call-release
18
+ steps:
19
+ - run: echo "URL is:"${{ needs.call-release.outputs.outputURL }}
0 commit comments