refactor lower repo owner name #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ISO Maker | ||
on: | ||
schedule: | ||
- cron: "15 07 3 * *" | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'ft_build_container_installer' | ||
jobs: | ||
iso-maker: | ||
name: ISO Maker | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
env: | ||
image_name: ublahaj | ||
image_tag: latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
base: | ||
- kinoite | ||
version: | ||
- 40 | ||
variant: | ||
- main | ||
- nvidia | ||
steps: | ||
- name: Build ISO | ||
uses: jasonn3/build-container-installer@main | ||
id: build | ||
with: | ||
arch: x86_64 | ||
image_name: ${{ env.image_name }}-${{ matrix.base }}-${{ matrix.version }}-${{ matrix.variant }} | ||
image_repo: ghcr.io/${{ github.repository_owner | awk '{print tolower($0)}' }} | ||
Check failure on line 35 in .github/workflows/iso-maker.yml GitHub Actions / ISO MakerInvalid workflow file
|
||
image_tag: ${{ env.image_tag }} | ||
version: 40 | ||
variant: ${{ matrix.base }}-${{ matrix.version }}-${{ matrix.variant }} | ||
iso_name: ${{ steps.build.with.image_name }}-${{ matrix.variant }}-${{ env.image_tag }}.iso | ||
# This example is for uploading your ISO as a Github artifact. You can do something similar using any cloud storage, so long as you copy the output | ||
- name: Upload ISO as artifact | ||
id: upload | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ steps.build.outputs.iso_name }} | ||
path: | | ||
${{ steps.build.outputs.iso_path }} | ||
${{ steps.build.outputs.iso_path }}-CHECKSUM | ||
if-no-files-found: error | ||
retention-days: 0 | ||
compression-level: 0 |