From 344ad187be651ec0fe73c1deae527e887635ea30 Mon Sep 17 00:00:00 2001 From: Cappy Ishihara Date: Sun, 22 Oct 2023 20:17:30 +0700 Subject: [PATCH] update paths --- .github/workflows/build-katsu.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-katsu.yml b/.github/workflows/build-katsu.yml index 3f1b53d..96d609c 100644 --- a/.github/workflows/build-katsu.yml +++ b/.github/workflows/build-katsu.yml @@ -1,4 +1,4 @@ -name: Build ISO images (with Katsu) +name: Build Live ISO images (with Katsu) env: DNF_PKGS: | @@ -39,12 +39,15 @@ on: workflow_dispatch: jobs: - build: + live-iso: strategy: fail-fast: false matrix: variant: - flagship + - gnome + - kde + - pantheon runs-on: ubuntu-latest container: image: ghcr.io/terrapkg/builder:f38 @@ -76,11 +79,11 @@ jobs: - name: Build ISO run: | pushd katsu - katsu --output=iso ${{ matrix.variant }}-live.yaml + katsu --output=iso modules/${{ matrix.variant }}/${{ matrix.variant }}-live.yaml popd - name: Upload ISO uses: actions/upload-artifact@v3 with: - name: ${{ matrix.variant }}-live.iso + name: ${{ matrix.variant }}-live path: katsu/out.iso