Skip to content

Commit

Permalink
Add checkout step and retrieve release version from artifact in beta-…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
realashleybailey committed Nov 5, 2023
1 parent abcb21d commit 99669e9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/beta-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 99669e9

Please sign in to comment.