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:
parent
38579860d8
commit
60ecaa5008
1 changed files with 7 additions and 6 deletions
11
README.md
11
README.md
|
|
@ -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
|
||||||
|
|
@ -58,8 +58,9 @@ Variant will be the third item in the package name. Example: `fedora-release-kin
|
||||||
|
|
||||||
### 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.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue