From cde1cd6d8a9cbbf89a6049a8db30a18b27b809e8 Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Thu, 15 Feb 2024 03:10:16 +0000 Subject: [PATCH] set what to checkout --- .github/workflows/iso.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/iso.yml b/.github/workflows/iso.yml index 5672a3c..a0984ce 100644 --- a/.github/workflows/iso.yml +++ b/.github/workflows/iso.yml @@ -33,7 +33,6 @@ env: IMAGE_REPO: ${{ github.event.inputs.IMAGE_REPO || 'ghcr.io/ublue-os' }} VARIANT: ${{ github.event.inputs.VARIANT || 'Silverblue' }} - jobs: build-and-push-iso: runs-on: ubuntu-latest @@ -51,6 +50,8 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: + repository: ${{ github.action_repository || github.repository }} + ref: ${{ github.action_ref || github.ref }} submodules: recursive - name: Install dependencies @@ -58,7 +59,7 @@ jobs: - name: Download image run: | - make ${IMAGE_NAME}-${IMAGE_VERSION} \ + make container/${IMAGE_NAME}-${IMAGE_VERSION} \ arch=${IMAGE_ARCH} \ version=${IMAGE_VERSION} \ image_repo=${IMAGE_REPO} \