Skip to content

Commit c7f710b

Browse files
committed
fix: properly set output of changes check step in docs generation workflow
1 parent 1b7525d commit c7f710b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/generate-docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Check for changes in the directory
3636
id: check_changes
3737
run: |
38-
git diff --exit-code solutions/${{ matrix.platform }} || echo "changes"
38+
git diff --exit-code solutions/${{ matrix.platform }} || echo "changes" >> $GITHUB_OUTPUT
3939
4040
- name: Commit and push changes
4141
if: steps.check_changes.outputs.changes == 'changes'

0 commit comments

Comments
 (0)