mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 19:07:54 +01:00
use var
This commit is contained in:
parent
cde1cd6d8a
commit
043b8b5155
1 changed files with 4 additions and 2 deletions
6
.github/workflows/iso.yml
vendored
6
.github/workflows/iso.yml
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue