From 0a29a6b0789d4a65248dbcd8b8cb60828b007e0d Mon Sep 17 00:00:00 2001 From: Andreas Fritzler Date: Mon, 6 May 2024 17:34:58 +0200 Subject: [PATCH] Fix Gardenlinux dev build --- .github/workflows/publish-gardenlinux-dev.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish-gardenlinux-dev.yaml b/.github/workflows/publish-gardenlinux-dev.yaml index 4ee51ac..68f32da 100644 --- a/.github/workflows/publish-gardenlinux-dev.yaml +++ b/.github/workflows/publish-gardenlinux-dev.yaml @@ -43,9 +43,9 @@ jobs: - name: Create dummy files using dd run: | - dd if=/dev/zero of=./build/METAL_SQUASHFS_FILE.squashfs bs=1M count=1 - dd if=/dev/zero of=./build/METAL_INITRD_FILE.initrd bs=1M count=1 - dd if=/dev/zero of=./build/METAL_VMLINUZ_FILE.vmlinuz bs=1M count=1 + dd if=/dev/zero of=.build/METAL_SQUASHFS_FILE.squashfs bs=1M count=1 + dd if=/dev/zero of=.build/METAL_INITRD_FILE.initrd bs=1M count=1 + dd if=/dev/zero of=.build/METAL_VMLINUZ_FILE.vmlinuz bs=1M count=1 - name: Login to GitHub Container Registry uses: docker/login-action@v1 @@ -59,7 +59,7 @@ jobs: file=$(ls ./build/*.raw | head -n 1) oras push ghcr.io/ironcore-dev/os-images/gardenlinux-dev:latest \ $file:application/vnd.ironcore.image.rootfs.v1alpha1.rootfs \ - ./build/METAL_SQUASHFS_FILE.squashfs:application/vnd.ironcore.image.squashfs.v1alpha1.squashfs \ - ./build/METAL_INITRD_FILE.initrd:application/vnd.ironcore.image.initramfs.v1alpha1.initramfs \ - ./build/METAL_VMLINUZ_FILE.vmlinuz:application/vnd.ironcore.image.vmlinuz.v1alpha1.vmlinuz \ + .build/METAL_SQUASHFS_FILE.squashfs:application/vnd.ironcore.image.squashfs.v1alpha1.squashfs \ + .build/METAL_INITRD_FILE.initrd:application/vnd.ironcore.image.initramfs.v1alpha1.initramfs \ + .build/METAL_VMLINUZ_FILE.vmlinuz:application/vnd.ironcore.image.vmlinuz.v1alpha1.vmlinuz \ --config config.json:application/vnd.ironcore.image.config.v1alpha1+json