Skip to content

Commit

Permalink
LTI-233 Using a different var (by removing github.event) in order for…
Browse files Browse the repository at this point in the history
… the 'dryRun' var to be a boolean. See actions/runner#1483 for more details.
  • Loading branch information
mitch30000 committed Jan 30, 2025
1 parent 3319df2 commit ab7a10d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: stacs/actions/.github/workflows/maven-release.yaml@LTI-234
secrets: inherit
with:
dryRun: ${{github.event.inputs.dryRun}}
releaseVersion: ${{github.event.inputs.releaseVersion}}
developmentVersion: ${{github.event.inputs.developmentVersion}}
dryRun: ${{inputs.dryRun}}
releaseVersion: ${{inputs.releaseVersion}}
developmentVersion: ${{inputs.developmentVersion}}

0 comments on commit ab7a10d

Please sign in to comment.