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 b5c3db5 commit 2410853Copy full SHA for 2410853
.github/workflows/ci-default.yml
@@ -43,8 +43,14 @@ jobs:
43
run: |
44
git submodule update --init --recursive
45
cd lib/openzeppelin-contracts-upgradeable
46
- git fetch --all --tags
47
- git checkout v4.9.6
+ git fetch --all --tags --force
+ git checkout refs/tags/v4.9.6 || git checkout tags/v4.9.6
48
+ cd ../..
49
+
50
+ - name: Debug tags
51
+ run: |
52
+ cd lib/openzeppelin-contracts-upgradeable
53
+ git tag -l
54
cd ../..
55
56
- name: Debug submodules
@@ -115,3 +121,4 @@ jobs:
115
121
pnpm test
116
122
# Always run this step so that all linting errors can be seen at once.
117
123
if: always()
124
0 commit comments