Skip to content

Commit 771874c

Browse files
committed
Fix OCI trigger in PR
The output is of type bool, and the comparison was checking for string 'true'. In JS 'true' is not equal true (bool) 🤷
1 parent 5a19efe commit 771874c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/oci-make.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- ${{ github.event.inputs.otp_version || '28' }}
8080
needs: build-package-generic-unix
8181
runs-on: ubuntu-latest
82-
if: ${{ needs.build-package-generic-unix.outputs.authorized }} == 'true'
82+
if: ${{ needs.build-package-generic-unix.outputs.authorized }} == true
8383
steps:
8484
- name: Checkout
8585
uses: actions/checkout@v5

0 commit comments

Comments
 (0)