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 a22019c commit 658c269Copy full SHA for 658c269
.github/workflows/ci.yml
@@ -61,12 +61,11 @@ jobs:
61
with:
62
submodules: true
63
- name: fetch Rails tags
64
+ working-directory: rails
65
run: |
- cd rails && git fetch --depth=1 origin \
66
- refs/tags/v8*:refs/tags/v8* \
67
- refs/tags/v7*:refs/tags/v7* \
68
- refs/tags/v6*:refs/tags/v6* \
69
- refs/tags/v5.2*:refs/tags/v5.2*
+ for version in v8 v7 v6 v5.2; do
+ git fetch --depth=1 origin refs/tags/${version}*:refs/tags/${version}*
+ done
70
- uses: ruby/setup-ruby@v1
71
72
ruby-version: 2.7
0 commit comments