Skip to content

Commit ca2b2e2

Browse files
committed
Merge branch 'bugfix/BB-252/oras' into q/8.4
2 parents 7424256 + 42adccf commit ca2b2e2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/release.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ jobs:
1818
steps:
1919
- name: Checkout
2020
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/
2130
2231
- name: Set up Docker Buildk
2332
uses: docker/setup-buildx-action@v1

0 commit comments

Comments
 (0)