1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

chore: update documentation

This commit is contained in:
Noel Miller 2024-03-07 16:20:07 -06:00
parent 38579860d8
commit 60ecaa5008

View file

@ -23,10 +23,10 @@ This action is designed to be called from a GitHub workflow using the following
id: upload
uses: actions/upload-artifact@v4
with:
name: ${{ env.IMAGE_NAME }}-${{ env.IMAGE_TAG }}-${{ env.VERSION }}.iso
name: ${{ steps.build.outputs.iso_name }}
path: |
${{ steps.build.outputs.iso_name }}
${{ steps.build.outputs.iso_name }}-CHECKSUM
${{ steps.build.outputs.iso_path }}
${{ steps.build.outputs.iso_path }}-CHECKSUM
if-no-files-found: error
retention-days: 0
compression-level: 0
@ -58,8 +58,9 @@ Variant will be the third item in the package name. Example: `fedora-release-kin
### Outputs
| Variable | Description | Usage |
| ----------------- | ------------------------------------------------------ | -------------------------------------------------------- |
| iso_name | Path to just the ISO file that the action creates | ${{ steps.YOUR_ID_FOR_ACTION.outputs.iso_name }} |
| -------- | ----------------------------------------| ------------------------------------------------ |
| iso_name | The name of the resulting .iso | ${{ steps.YOUR_ID_FOR_ACTION.outputs.iso_name }} |
| iso_path | The name and path of the resulting .iso | ${{ steps.YOUR_ID_FOR_ACTION.outputs.iso_name }} |
For outputs, see example above.