Update build_iso.yml #4
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: apprendo | ||
uses: jasonn3/build-container-installer@main | ||
id: build | ||
with: | ||
arch: ${{ env.ARCH}} | ||
image_name: ${{ env.IMAGE_NAME}} | ||
image_repo: ${{ env.IMAGE_REPO}} | ||
image_tag: ${{ env.IMAGE_TAG }} | ||
version: ${{ env.VERSION }} | ||
variant: ${{ env.VARIANT }} | ||
iso_name: ${{ env.IMAGE_NAME }}-${{ env.IMAGE_TAG }}-${{ env.VERSION }}.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 |