From 982fbc2179e94bed79844df4dad1a85680fb9fd7 Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Sat, 30 Dec 2023 09:19:08 +0100 Subject: [PATCH] Add checkouts --- action.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/action.yml b/action.yml index b71b574d22f0..860256c2a151 100644 --- a/action.yml +++ b/action.yml @@ -52,6 +52,30 @@ runs: using: "composite" steps: + + - name: "Checkout Armbian os" + uses: actions/checkout@v4 + with: + repository: armbian/os + fetch-depth: 0 + clean: false + path: os + + - name: "Checkout Armbian build framework" + uses: actions/checkout@v4 + with: + repository: armbian/build + fetch-depth: 0 + clean: false + path: build + + - name: "Checkout customisations" + uses: actions/checkout@v4 + with: + fetch-depth: 0 + clean: false + path: custom + - shell: bash run: |