mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
fix: updated action to use outputs and build-and-test to use outputs
This commit is contained in:
parent
7b11754a5d
commit
70be95cd83
2 changed files with 15 additions and 1 deletions
5
.github/workflows/build-and-test.yml
vendored
5
.github/workflows/build-and-test.yml
vendored
|
|
@ -86,6 +86,7 @@ jobs:
|
|||
|
||||
- name: Build ISO with new container
|
||||
uses: ./
|
||||
id: build
|
||||
with:
|
||||
arch: ${{ env.ARCH}}
|
||||
image_name: ${{ env.IMAGE_NAME}}
|
||||
|
|
@ -101,7 +102,9 @@ jobs:
|
|||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ env.ISO_NAME }}.iso
|
||||
path: ${{ github.workspace}}/*
|
||||
path: |
|
||||
${{ steps.build.outputs.iso-path }}
|
||||
${{ steps.build.outputs.checksum-path }}
|
||||
if-no-files-found: error
|
||||
retention-days: 0
|
||||
compression-level: 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue