From e87775bb1a656a329ee3d460a17b4ca31c4f8035 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Mon, 25 Oct 2021 13:12:38 -0500 Subject: [PATCH] GITHUB_REPOSITORY instead of env.GITHUB_REPOSITORY --- .github/workflows/build-reference.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-reference.yml b/.github/workflows/build-reference.yml index 1e997cbda7..637013159a 100644 --- a/.github/workflows/build-reference.yml +++ b/.github/workflows/build-reference.yml @@ -19,7 +19,7 @@ jobs: - name: Push generated antora files to the spring-generated-docs uses: JamesIves/github-pages-deploy-action@4.1.4 with: - branch: ${{ env.GITHUB_REPOSITORY }} # The branch the action should deploy to. + branch: ${{ GITHUB_REPOSITORY }} # The branch the action should deploy to. folder: "docs/build/generateAntora" # The folder the action should deploy. repository-name: "spring-io/spring-generated-docs" token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}