We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2889097 + 5c7d8d6 commit 0c0719cCopy full SHA for 0c0719c
2 files changed
.github/workflows/release.yml
@@ -65,6 +65,7 @@ jobs:
65
run: |
66
npm install -g markdownlint-cli
67
markdownlint changelog.md --fix
68
+ chmod +x java/cbsso-opensaml/gradlew
69
box task run taskfile=tasks/Build :version=${{ env.VERSION }} :projectName=${{ env.MODULE_ID }} :buildID=${{ github.run_number }} :branch=${{ env.BRANCH }}
70
71
- name: Commit Changelog To Master
tasks/BuildJavaDeps.cfc
@@ -15,9 +15,11 @@ component {
15
.boldMagentaLine( "Executing java build" )
16
.toConsole();
17
18
+ print.line( rootDir & "/java/cbsso-opensaml" ).toConsole();
19
+
20
command( "run" )
21
.inWorkingDirectory( rootDir & "/java/cbsso-opensaml" )
- .params( "gradlew", ":app:shadowJar" )
22
+ .params( "./gradlew", ":app:shadowJar" )
23
.run();
24
25
command( "cp" )
0 commit comments