8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8c8e50 commit 00763c7Copy full SHA for 00763c7
.github/workflows/release.yaml
@@ -46,6 +46,14 @@ jobs:
46
with:
47
fetch-depth: 0
48
49
+ # If the event that triggered the build was an annotated tag (which our
50
+ # tags are supposed to be), actions/checkout has a bug where the tag in
51
+ # question is only a lightweight tag and not a full annotated tag. This
52
+ # command seems to fix it.
53
+ # https://github.com/actions/checkout/issues/290
54
+ - name: Fetch git tags
55
+ run: git fetch --tags --force
56
+
57
- name: Setup build tools
58
run: |
59
brew install bash gnu-getopt make
0 commit comments