Skip to content

Commit 79c91fa

Browse files
Merge pull request #11 from jvanschie/fix/input-checkout-syntax-issue
fix: correct syntax in checkout_repository if statement by using single quotes
2 parents 2c4e39a + aa1ce52 commit 79c91fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ runs:
2626
using: "composite"
2727
steps:
2828
- name: Checkout code
29-
if: inputs.checkout_repository == "true"
29+
if: inputs.checkout_repository == 'true'
3030
uses: actions/checkout@v5
3131

3232
- name: Extract version from tag

0 commit comments

Comments
 (0)