mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +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_REPO: ${{ github.event.inputs.IMAGE_REPO || 'ghcr.io/ublue-os' }}
|
||||
VARIANT: ${{ github.event.inputs.VARIANT || 'Silverblue' }}
|
||||
CURR_REPO: ${{ github.action_repository || github.repository }}
|
||||
CURR_REF: ${{ github.action_ref || github.ref }}
|
||||
|
||||
jobs:
|
||||
build-and-push-iso:
|
||||
|
|
@ -50,8 +52,8 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: ${{ github.action_repository || github.repository }}
|
||||
ref: ${{ github.action_ref || github.ref }}
|
||||
repository: ${{ env.CURR_REPO }}
|
||||
ref: ${{ env.CURR_REF }}
|
||||
submodules: recursive
|
||||
|
||||
- name: Install dependencies
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue