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 +