Skip to content

Commit

Permalink
fix get latest tag repo
Browse files Browse the repository at this point in the history
Signed-off-by: Anton-4 <[email protected]>
  • Loading branch information
Anton-4 committed Nov 21, 2023
1 parent 4366d1f commit 819f02f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/basic_cli_test_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@ jobs:

- name: Get the repo of the latest basic-cli release
run: |
mkdir basic-cli
git clone --depth 1 https://github.com/roc-lang/basic-cli
cd basic-cli
./ci/get_latest_release_git_files.sh
git fetch --tags
latestTag=$(git describe --tags $(git rev-list --tags --max-count=1))
git checkout $latestTag
- name: Run all tests with latest roc nightly and latest basic-cli release
run: |
Expand Down

0 comments on commit 819f02f

Please sign in to comment.