diff --git a/.github/workflows/www.yml b/.github/workflows/www.yml index 586a1f7..1634ea5 100644 --- a/.github/workflows/www.yml +++ b/.github/workflows/www.yml @@ -110,7 +110,9 @@ jobs: - name: Get Pull Request Number id: pr - run: echo "::set-output name=pull_request_number::$(gh pr view --json number -q .number || echo "")" + run: | + cd "${{ github.workspace }}" + echo "::set-output name=pull_request_number::$(gh pr view --json number -q .number || echo "")" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}