From 50dcb36c843f471c32595ef656e097564225dd78 Mon Sep 17 00:00:00 2001 From: Evil Azrael Date: Sun, 16 Jun 2024 16:47:04 +0200 Subject: [PATCH] Build fix --- .github/workflows/build-armbian.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-armbian.yml b/.github/workflows/build-armbian.yml index a7058eb369ba..c5682a2ce6f5 100644 --- a/.github/workflows/build-armbian.yml +++ b/.github/workflows/build-armbian.yml @@ -1,14 +1,19 @@ name: "Build Armbian" on: workflow_dispatch: + push: + pull_request: jobs: build-armbian: runs-on: ubuntu-latest steps: - - uses: eazrael/armbian-build-artillery-x4@artilleryx4 - with: + - name: Check out code + uses: actions/checkout@v2 + - name: Run Armbian workflow + uses: ./ + with: armbian_token: "${{ secrets.GITHUB_TOKEN }}" # GitHub token armbian_release: "bookworm" # userspace armbian_target: "build" # build=image, kernel=kernel armbian_board: "artilleryx4" # build target - \ No newline at end of file +