1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

set what to checkout

This commit is contained in:
Jason N. 2024-02-15 03:10:16 +00:00
parent e2f968f1d2
commit cde1cd6d8a

View file

@ -33,7 +33,6 @@ env:
IMAGE_REPO: ${{ github.event.inputs.IMAGE_REPO || 'ghcr.io/ublue-os' }} IMAGE_REPO: ${{ github.event.inputs.IMAGE_REPO || 'ghcr.io/ublue-os' }}
VARIANT: ${{ github.event.inputs.VARIANT || 'Silverblue' }} VARIANT: ${{ github.event.inputs.VARIANT || 'Silverblue' }}
jobs: jobs:
build-and-push-iso: build-and-push-iso:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -51,6 +50,8 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
repository: ${{ github.action_repository || github.repository }}
ref: ${{ github.action_ref || github.ref }}
submodules: recursive submodules: recursive
- name: Install dependencies - name: Install dependencies
@ -58,7 +59,7 @@ jobs:
- name: Download image - name: Download image
run: | run: |
make ${IMAGE_NAME}-${IMAGE_VERSION} \ make container/${IMAGE_NAME}-${IMAGE_VERSION} \
arch=${IMAGE_ARCH} \ arch=${IMAGE_ARCH} \
version=${IMAGE_VERSION} \ version=${IMAGE_VERSION} \
image_repo=${IMAGE_REPO} \ image_repo=${IMAGE_REPO} \