From c7f710b8d17ab256ec8b2a682b98f1496c2e314b Mon Sep 17 00:00:00 2001 From: Omar Besbes <86571415+omar-besbes@users.noreply.github.com> Date: Fri, 11 Oct 2024 01:00:25 +0100 Subject: [PATCH] fix: properly set output of changes check step in docs generation workflow --- .github/workflows/generate-docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generate-docs.yaml b/.github/workflows/generate-docs.yaml index d6a88dd..4eb4870 100644 --- a/.github/workflows/generate-docs.yaml +++ b/.github/workflows/generate-docs.yaml @@ -35,7 +35,7 @@ jobs: - name: Check for changes in the directory id: check_changes run: | - git diff --exit-code solutions/${{ matrix.platform }} || echo "changes" + git diff --exit-code solutions/${{ matrix.platform }} || echo "changes" >> $GITHUB_OUTPUT - name: Commit and push changes if: steps.check_changes.outputs.changes == 'changes'