From 99669e978261f27994220d7dc88272b65fbe535e Mon Sep 17 00:00:00 2001 From: Ashley Date: Sun, 5 Nov 2023 18:03:46 +0000 Subject: [PATCH] Add checkout step and retrieve release version from artifact in beta-ci workflow Previously, the beta-ci workflow did not include a checkout step and did not retrieve the release version from the artifact. This commit adds a checkout step to ensure the repository is checked out and also adds a step to retrieve the release version from the artifact. By doing this, the workflow can proceed with the necessary steps for the beta testing process. --- .github/workflows/beta-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/beta-ci.yml b/.github/workflows/beta-ci.yml index 2de56eeb9..81ed431bd 100644 --- a/.github/workflows/beta-ci.yml +++ b/.github/workflows/beta-ci.yml @@ -271,6 +271,10 @@ jobs: needs: - merge steps: + # Checkout the repo + - name: Checkout + uses: actions/checkout@v4 + # Get the Release Version from the artifact - name: Get the Release Version from the artifact uses: actions/download-artifact@v2