Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit 09a875f

Browse files
committed
Use literals for true/false instead
1 parent 85daa20 commit 09a875f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/spring-stage-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
4141
staging-with-gradle:
4242
needs: maven-or-gradle
43-
if: ${{ ! needs.maven-or-gradle.outputs.isMaven }}
43+
if: ${{ needs.maven-or-gradle.outputs.isMaven == 'false' }}
4444
uses: spring-projects/spring-integration-aws/.github/workflows/spring-artifactory-gradle-release-staging.yml@main
4545
with:
4646
releaseVersion: ${{ inputs.releaseVersion }}
@@ -49,7 +49,7 @@ jobs:
4949

5050
staging-with-maven:
5151
needs: maven-or-gradle
52-
if: ${{ needs.maven-or-gradle.outputs.isMaven }}
52+
if: ${{ needs.maven-or-gradle.outputs.isMaven == 'true' }}
5353
uses: spring-projects/spring-integration-aws/.github/workflows/spring-artifactory-maven-release-staging.yml@main
5454
with:
5555
releaseVersion: ${{ inputs.releaseVersion }}

0 commit comments

Comments
 (0)