Skip to content

Commit 8e34b4c

Browse files
author
Steve Riesenberg
committed
Fix step id in conditional checks
1 parent 8f4d003 commit 8e34b4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-next-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ jobs:
5454
echo "::set-output name=is_open_issues::$(cat build/github/milestones/is-open-issues)"
5555
- id: validate-release-state
5656
name: Validate State of Release
57-
if: steps.check-release-due.outputs.is_due_today == 'true' && steps.check-release-due.outputs.is_open_issues == 'true'
57+
if: steps.check-release-due.outputs.is_due_today == 'true' && steps.check-open-issues.outputs.is_open_issues == 'true'
5858
run: |
5959
echo "The release is due today but there are open issues"
6060
exit 1
6161
- id: update-version-and-push
6262
name: Update version and push
63-
if: steps.check-release-due.outputs.is_due_today == 'true' && steps.check-release-due.outputs.is_open_issues == 'false'
63+
if: steps.check-release-due.outputs.is_due_today == 'true' && steps.check-open-issues.outputs.is_open_issues == 'false'
6464
run: |
6565
export GRADLE_ENTERPRISE_CACHE_USERNAME="$GRADLE_ENTERPRISE_CACHE_USER"
6666
export GRADLE_ENTERPRISE_CACHE_PASSWORD="$GRADLE_ENTERPRISE_CACHE_PASSWORD"

0 commit comments

Comments
 (0)