We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a82038c + 6e4c95d commit 8e8104bCopy full SHA for 8e8104b
1 file changed
.github/workflows/update.yml
@@ -29,10 +29,14 @@ jobs:
29
# when provided, it configures the ssh/git config to authenticate automatically with that key to the source repo
30
# the authentication won't be used for other repos (which we need for msync), so we cannot use the option
31
# that's the reason for the 'Add SSH key' step
32
+ #
33
+ # the "ref: github.ref" is required for the tag to be properly checked out, as a workaround
34
+ # for https://github.com/actions/checkout/issues/1638
35
uses: actions/checkout@v5
36
with:
37
fetch-depth: 0
38
fetch-tags: true
39
+ ref: ${{ github.ref }}
40
- name: Setup ruby
41
uses: ruby/setup-ruby@v1
42
0 commit comments