mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 02:47:56 +01:00
Fix documentation about iso_path (#177)
This commit is contained in:
parent
33d0e5a5c2
commit
e310904cc7
4 changed files with 9 additions and 7 deletions
|
|
@ -29,8 +29,8 @@ This action is designed to be called from a GitHub workflow using the following
|
||||||
with:
|
with:
|
||||||
name: ${{ steps.build.outputs.iso_name }}
|
name: ${{ steps.build.outputs.iso_name }}
|
||||||
path: |
|
path: |
|
||||||
${{ steps.build.outputs.iso_path }}
|
${{ steps.build.outputs.iso_path }}/${{ steps.build.outputs.iso_name }}
|
||||||
${{ steps.build.outputs.iso_path }}-CHECKSUM
|
${{ steps.build.outputs.iso_path }}/${{ steps.build.outputs.iso_name }}-CHECKSUM
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: 0
|
retention-days: 0
|
||||||
compression-level: 0
|
compression-level: 0
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
- [Home](home.md)
|
- [Home](home.md)
|
||||||
|
- [Usage](usage.md)
|
||||||
- Development
|
- Development
|
||||||
- [Using the Makefile](development/makefile.md)
|
- [Using the Makefile](development/makefile.md)
|
||||||
- [Using the Container](development/container.md)
|
- [Using the Container](development/container.md)
|
||||||
|
|
@ -7,4 +8,4 @@
|
||||||
- Examples
|
- Examples
|
||||||
- [Adding Flatpaks](examples/adding-flatpaks.md)
|
- [Adding Flatpaks](examples/adding-flatpaks.md)
|
||||||
|
|
||||||
- [Known Errors](known_errors.md)
|
- [Known Errors](known_errors.md)
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ Welcome to the build-container-installer wiki!
|
||||||
|
|
||||||
## Index
|
## Index
|
||||||
|
|
||||||
|
- [Usage](usage.md)
|
||||||
- Development
|
- Development
|
||||||
- [Using the Makefile](development/makefile.md)
|
- [Using the Makefile](development/makefile.md)
|
||||||
- [Using the Container](development/container.md)
|
- [Using the Container](development/container.md)
|
||||||
|
|
@ -10,4 +11,4 @@ Welcome to the build-container-installer wiki!
|
||||||
- Examples
|
- Examples
|
||||||
- [Adding Flatpaks](examples/adding-flatpaks.md)
|
- [Adding Flatpaks](examples/adding-flatpaks.md)
|
||||||
|
|
||||||
- [Known Errors](known_errors.md)
|
- [Known Errors](known_errors.md)
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,8 @@ This action is designed to be called from a GitHub workflow using the following
|
||||||
with:
|
with:
|
||||||
name: ${{ steps.build.outputs.iso_name }}
|
name: ${{ steps.build.outputs.iso_name }}
|
||||||
path: |
|
path: |
|
||||||
${{ steps.build.outputs.iso_path }}
|
${{ steps.build.outputs.iso_path }}/${{ steps.build.outputs.iso_name }}
|
||||||
${{ steps.build.outputs.iso_path }}-CHECKSUM
|
${{ steps.build.outputs.iso_path }}/${{ steps.build.outputs.iso_name }}-CHECKSUM
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: 0
|
retention-days: 0
|
||||||
compression-level: 0
|
compression-level: 0
|
||||||
|
|
@ -65,4 +65,4 @@ Variant will be the third item in the package name. Example: `fedora-release-kin
|
||||||
| Variable | Description | Usage |
|
| Variable | Description | Usage |
|
||||||
| -------- | ----------------------------------------| ------------------------------------------------ |
|
| -------- | ----------------------------------------| ------------------------------------------------ |
|
||||||
| iso_name | The name of the resulting .iso | ${{ 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 }} |
|
| iso_path | The path to the resulting .iso | ${{ steps.YOUR_ID_FOR_ACTION.outputs.iso_path }} |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue