diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 76cc4b16e0..b2d65a4039 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,7 +23,8 @@ jobs: - name: Execute script id: execute-script run: | - echo "PR_COMMIT_PARITY_OUTPUT=$(./tools/pr-commit-parity.sh $GITHUB_CONTEXT)" >> $GITHUB_ENV + PR_COMMIT_PARITY_OUTPUT=$(./tools/pr-commit-parity.sh $GITHUB_CONTEXT) + echo "$PR_COMMIT_PARITY_OUTPUT" >> "$GITHUB_OUTPUT" - name: See script output run: | - echo "$PR_COMMIT_PARITY_OUTPUT" \ No newline at end of file + echo "${{ steps.pr-commit-parity.outputs.PR_COMMIT_PARITY_OUTPUT }}" \ No newline at end of file