mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
ci: fix oras download in package hasher
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
parent
c14e551af5
commit
c00004a321
6
.github/workflows/package-hasher.yml
vendored
6
.github/workflows/package-hasher.yml
vendored
@ -28,13 +28,13 @@ jobs:
|
||||
|
||||
- name: Install oras
|
||||
env:
|
||||
ORAS_VERSION: 0.16.0
|
||||
ORAS_VERSION: "0.16.0"
|
||||
run: |
|
||||
curl -fsSLO "https://github.com/oras-project/oras/releases/download/v${ORAS_VERSION}/oras_${ORAS_VERSION}_linux_amd64.tar.gz"
|
||||
mkdir -p oras-install/
|
||||
tar -zxf "oras_${ORAS_VERSION}_*.tar.gz" -C oras-install/
|
||||
tar -zxf "oras_${ORAS_VERSION}_linux_amd64.tar.gz" -C oras-install/
|
||||
mv oras-install/oras /usr/local/bin/
|
||||
rm -rf "oras_${ORAS_VERSION}_*.tar.gz" oras-install/
|
||||
rm -rf "oras_${ORAS_VERSION}_linux_amd64.tar.gz" oras-install/
|
||||
|
||||
- name: Run apk hasher
|
||||
env:
|
||||
|
Loading…
Reference in New Issue
Block a user