From 2fc89eeed207dda5afb4d28216833b52037ade66 Mon Sep 17 00:00:00 2001 From: Luca Palmieri <20745048+LukeMathWalker@users.noreply.github.com> Date: Thu, 2 Feb 2023 18:33:07 +0000 Subject: [PATCH 1/2] Fix the reference that gets checked out --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 80e4499c40..3009710f32 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -115,7 +115,7 @@ jobs: steps: - uses: actions/checkout@v3 with: - ref: ${{ inputs.release_branch }} + ref: ${{ needs.get-or-create-release-branch.release_branch }} path: smithy-rs token: ${{ secrets.RELEASE_AUTOMATION_BOT_PAT }} - name: Upgrade gradle.properties From eac81bced95867583e0db681af5bb98a7f85204b Mon Sep 17 00:00:00 2001 From: Luca Palmieri <20745048+LukeMathWalker@users.noreply.github.com> Date: Thu, 2 Feb 2023 18:34:00 +0000 Subject: [PATCH 2/2] Fix --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3009710f32..9dae0d4bd1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -115,7 +115,7 @@ jobs: steps: - uses: actions/checkout@v3 with: - ref: ${{ needs.get-or-create-release-branch.release_branch }} + ref: ${{ needs.get-or-create-release-branch.outputs.release_branch }} path: smithy-rs token: ${{ secrets.RELEASE_AUTOMATION_BOT_PAT }} - name: Upgrade gradle.properties