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 e94e570 commit 8aad03bCopy full SHA for 8aad03b
.github/workflows/build-push.yml
@@ -99,15 +99,15 @@ jobs:
99
SFX=${{ steps.vars.outputs.sfx }}
100
for file in *.tar.gz; do
101
fn=$(basename ${file} .tar.gz)
102
- name=${fn-*}
+ name=${fn%-*}
103
arch=${fn##*-}
104
echo "Found: $name arch: $arch"
105
tar xf ${file}
106
rm -f ${file}
107
mv ${fn}/rootfs-oci ${name}-oci-${arch}${SFX}
108
tar cfz ${name}-oci-${arch}${SFX}.tar.gz ${name}-oci-${arch}${SFX}
109
done
110
- ls -la *-oc*i${SFX}/
+ ls -la *-oci*${SFX}/
111
ls -l *.tar.gz
112
- name: Log in to registry
113
run: |
0 commit comments