From af873140ca6e65fc94083efea608f4458b127575 Mon Sep 17 00:00:00 2001 From: judsonjames Date: Tue, 9 Jan 2024 00:24:39 -0500 Subject: [PATCH] Fix arm-runner-action syntax --- .github/workflows/orangepi-image-generation.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/orangepi-image-generation.yml b/.github/workflows/orangepi-image-generation.yml index cb715701fd..21d38eb32e 100644 --- a/.github/workflows/orangepi-image-generation.yml +++ b/.github/workflows/orangepi-image-generation.yml @@ -296,9 +296,10 @@ jobs: # TODO- replace with the arm-runner action and run this inside of the chroot. but this works for now. - uses: pguyot/arm-runner-action@v2 name: Generate image - run: | - chmod +x scripts/generatePiImage.sh - ./scripts/generatePiImage.sh ${{ matrix.image_url }} ${{ matrix.image_suffix }} + with: + commands: | + chmod +x scripts/generatePiImage.sh + ./scripts/generatePiImage.sh ${{ matrix.image_url }} ${{ matrix.image_suffix }} - uses: actions/upload-artifact@v4 name: Upload image with: