From 34050141ac1f26d27138b0927524c6f022e9ccd9 Mon Sep 17 00:00:00 2001 From: "k.koide" Date: Mon, 22 Jul 2024 17:13:09 +0900 Subject: [PATCH] fix upload --- .github/workflows/deb.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deb.yml b/.github/workflows/deb.yml index 2722557..cc54721 100644 --- a/.github/workflows/deb.yml +++ b/.github/workflows/deb.yml @@ -48,10 +48,9 @@ jobs: platforms: ${{ matrix.PLATFORM }} push: false - - name: Extract deb (AMD64) + - name: Extract deb run: | - docker run -v ${{github.workspace}}/${{ matrix.DISTRO.label }}:/output iridescence:latest /bin/bash -c "cp /root/iridescence/build/*.deb /output/" - docker run -v ${{github.workspace}}/${{ matrix.DISTRO.label }}:/output --platform=linux/arm64 iridescence:latest /bin/bash -c "cp /root/iridescence/build/*.deb /output/" + docker run -v ${{github.workspace}}/${{ matrix.DISTRO.label }}:/output --platform=${{ matrix.PLATFORM }} iridescence:latest /bin/bash -c "cp /root/iridescence/build/*.deb /output/" - name: Upload deb uses: actions/upload-artifact@v4