From c1bf1fda5a5d557a18468881685ad8a2b6bb4fd8 Mon Sep 17 00:00:00 2001 From: Noel Miller Date: Thu, 7 Mar 2024 15:49:18 -0600 Subject: [PATCH] chore: fixup README --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3d8549f..3875bea 100644 --- a/README.md +++ b/README.md @@ -13,16 +13,20 @@ This action is designed to be called from a GitHub workflow using the following 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: my_iso.iso - path: ${{ steps.build.outputs.output-directory }} + name: ${{ env.IMAGE_NAME }}-${{ env.IMAGE_TAG }}-${{ env.VERSION }}.iso + path: | + ${{ steps.build.outputs.iso_name }} + ${{ steps.build.outputs.iso_name }}-CHECKSUM if-no-files-found: error retention-days: 0 compression-level: 0