1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00
This commit is contained in:
Jason N. 2024-02-15 12:52:43 +00:00
parent cde1cd6d8a
commit 043b8b5155

View file

@ -32,6 +32,8 @@ env:
IMAGE_NAME: ${{ github.event.inputs.IMAGE_NAME || 'base-main' }} IMAGE_NAME: ${{ github.event.inputs.IMAGE_NAME || 'base-main' }}
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' }}
CURR_REPO: ${{ github.action_repository || github.repository }}
CURR_REF: ${{ github.action_ref || github.ref }}
jobs: jobs:
build-and-push-iso: build-and-push-iso:
@ -50,8 +52,8 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
repository: ${{ github.action_repository || github.repository }} repository: ${{ env.CURR_REPO }}
ref: ${{ github.action_ref || github.ref }} ref: ${{ env.CURR_REF }}
submodules: recursive submodules: recursive
- name: Install dependencies - name: Install dependencies