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 id: upload
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: ${{ env.IMAGE_NAME }}-${{ env.IMAGE_TAG }}-${{ env.VERSION }}.iso name: ${{ steps.build.outputs.iso_name }}
path: | path: |
${{ steps.build.outputs.iso_name }} ${{ steps.build.outputs.iso_path }}
${{ steps.build.outputs.iso_name }}-CHECKSUM ${{ steps.build.outputs.iso_path }}-CHECKSUM
if-no-files-found: error if-no-files-found: error
retention-days: 0 retention-days: 0
compression-level: 0 compression-level: 0
@ -57,9 +57,10 @@ The following variables can be used to customize the created ISO.
Variant will be the third item in the package name. Example: `fedora-release-kinoite-39-34.noarch` will be kinoite Variant will be the third item in the package name. Example: `fedora-release-kinoite-39-34.noarch` will be kinoite
### Outputs ### Outputs
| Variable | Description | Usage | | 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. For outputs, see example above.