Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeers committed Sep 4, 2024
2 parents 2889097 + 5c7d8d6 commit 0c0719c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ jobs:
run: |
npm install -g markdownlint-cli
markdownlint changelog.md --fix
chmod +x java/cbsso-opensaml/gradlew
box task run taskfile=tasks/Build :version=${{ env.VERSION }} :projectName=${{ env.MODULE_ID }} :buildID=${{ github.run_number }} :branch=${{ env.BRANCH }}
- name: Commit Changelog To Master
Expand Down
4 changes: 3 additions & 1 deletion tasks/BuildJavaDeps.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ component {
.boldMagentaLine( "Executing java build" )
.toConsole();

print.line( rootDir & "/java/cbsso-opensaml" ).toConsole();

command( "run" )
.inWorkingDirectory( rootDir & "/java/cbsso-opensaml" )
.params( "gradlew", ":app:shadowJar" )
.params( "./gradlew", ":app:shadowJar" )
.run();

command( "cp" )
Expand Down

0 comments on commit 0c0719c

Please sign in to comment.