Skip to content

Commit 0b3f536

Browse files
authored
ci: fix conditional check in changed-files action (#133)
The change resolves an issue with the usage of `changed_files` GH action used in the workflow. The method `only_changed` returns a string type and not a boolean.
1 parent e3be7f1 commit 0b3f536

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
config.json
3434
3535
- name: Extract version and create tag
36-
if: steps.changed-files.outputs.only_changed
36+
if: steps.changed-files.outputs.only_changed == 'true'
3737
run: |
3838
git config user.name "github-actions[bot]"
3939
git config user.email "github-actions[bot]@users.noreply.github.com"

0 commit comments

Comments
 (0)