We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56112fd commit 2e90102Copy full SHA for 2e90102
.github/workflows/ci.yml
@@ -45,7 +45,10 @@ jobs:
45
- name: Checkout
46
uses: actions/checkout@v4
47
with:
48
- fetch-tags: true # Ensure we can run "git describe"
+ # Ensure we can run `git describe`.
49
+ # Related issue:
50
+ # https://github.com/actions/checkout/issues/1467
51
+ fetch-tags: ${{ ! contains(github.ref, 'refs/tags/') }} # Only fetch the tag if we're not being triggered by a tag.
52
fetch-depth: 50
53
54
- name: Cache GRPC Build (Restore)
0 commit comments