Skip to content

Commit 08df524

Browse files
committed
Fix typo in workflow condition variable
Corrected 'Is_RELEASE' to 'IS_RELEASE' in the sign job condition to ensure proper environment variable usage.
1 parent d4a2700 commit 08df524

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
# Sign the packages for release
9595
sign:
9696
needs: [build-and-test]
97-
if: ${{ env.IS_MAIN == 'true' || env.Is_RELEASE == 'true' }}
97+
if: ${{ env.IS_MAIN == 'true' || env.IS_RELEASE == 'true' }}
9898
runs-on: windows-latest
9999
permissions:
100100
id-token: write # Required for requesting the JWT

0 commit comments

Comments
 (0)