Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
Signed-off-by: Wainer dos Santos Moschetta <[email protected]>
  • Loading branch information
wainersm committed Jul 29, 2024
1 parent 46405fa commit bad1cee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/podvm_mkosi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ defaults:
jobs:
build-binaries:
name: Build binaries
if : ${{ github.event.inputs.binaries-image == '' }}
if : ${{ inputs.binaries-image == '' }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
always() && (
needs.build-binaries.result == 'success' || (
needs.build-binaries.result == 'skipped' &&
github.event.inputs.binaries-image != ''
inputs.binaries-image != ''
)
)
runs-on: ubuntu-latest
Expand Down Expand Up @@ -109,10 +109,10 @@ jobs:
- name: Decide on image to use
id: binaries-image
run: |
if [ -z "${{ github.event.inputs.binaries-image }}" ]; then
if [ -z "${{ inputs.binaries-image }}" ]; then
echo "image=ghcr.io/${{ github.repository }}/podvm/binaries-fedora:${{ github.sha }}" | tee -a "$GITHUB_OUTPUT"
else
echo "image=${{ github.event.inputs.binaries-image }}" | tee -a "$GITHUB_OUTPUT"
echo "image=${{ inputs.binaries-image }}" | tee -a "$GITHUB_OUTPUT"
fi
- name: Download binaries and unpack into binaries-tree
Expand All @@ -128,7 +128,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: podvm-binaries-tree-fedora-amd64-${{ github.sha }}
path: podvm-mkosi/resources/binaries-tree
path: src/cloud-api-adaptor/podvm-mkosi/resources/binaries-tree

- name: Build image
working-directory: src/cloud-api-adaptor/podvm-mkosi
Expand Down

0 comments on commit bad1cee

Please sign in to comment.