Skip to content

Commit

Permalink
checkv2
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-bompart committed Oct 21, 2024
1 parent 70f0ab3 commit 02f5a0f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/foo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,19 @@ jobs:
- name: Run git describe with remote heads
run: git describe --tags --abbrev=0 --match=@coveo/atomic@* refs/remotes/origin/release/v3
continue-on-error: true
foo-v2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
refs: 'v2'
- name: Run git describe with branch refs
run: git describe --tags --abbrev=0 --match=@coveo/atomic@* release/v2
continue-on-error: true
- name: Run git describe with local heads
run: git describe --tags --abbrev=0 --match=@coveo/atomic@* refs/heads/release/v2
continue-on-error: true
- name: Run git describe with remote heads
run: git describe --tags --abbrev=0 --match=@coveo/atomic@* refs/remotes/origin/release/v2
continue-on-error: true

0 comments on commit 02f5a0f

Please sign in to comment.