We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7424256 + 42adccf commit ca2b2e2Copy full SHA for ca2b2e2
.github/workflows/release.yaml
@@ -18,6 +18,15 @@ jobs:
18
steps:
19
- name: Checkout
20
uses: actions/checkout@v2
21
+
22
+ # TODO: remove the following step once Oras CLI 0.13.0 bug https://github.com/oras-project/oras/issues/447 is fixed.
23
+ - name: Downgrade Oras to 0.12.0
24
+ run: |
25
+ curl -LO https://github.com/oras-project/oras/releases/download/v0.12.0/oras_0.12.0_linux_amd64.tar.gz
26
+ mkdir -p oras-install/
27
+ tar -zxf oras_0.12.0_*.tar.gz -C oras-install/
28
+ mv oras-install/oras /usr/local/bin/
29
+ rm -rf oras_0.12.0_*.tar.gz oras-install/
30
31
- name: Set up Docker Buildk
32
uses: docker/setup-buildx-action@v1
0 commit comments