From 45d1133a3a3081c18f890485d423788ad51268b4 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 7 Mar 2022 16:12:12 +0100 Subject: [PATCH] Update builder.yaml --- .github/workflows/builder.yaml | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/.github/workflows/builder.yaml b/.github/workflows/builder.yaml index 710e57b9c..3b4ce81b1 100644 --- a/.github/workflows/builder.yaml +++ b/.github/workflows/builder.yaml @@ -14,26 +14,18 @@ on: jobs: check-addon-changes: - name: Initialize build runs-on: ubuntu-latest outputs: - architectures: ${{ steps.info.outputs.architectures }} changedAddons: ${{ steps.filter.outputs.changes }} steps: - - name: Checkout the repository - uses: actions/checkout@v2.4.0 - with: - fetch-depth: 0 + - name: â†Šī¸ Checkout + uses: actions/checkout@v2.4.0 - - name: Get information - id: info - uses: home-assistant/actions/helpers/info@master - - - name: 📂 Detect chanced files - uses: dorny/paths-filter@v2 - id: filter - with: - filters: .github/paths-filter.yml + - name: 📂 Detect chanced files + uses: dorny/paths-filter@v2 + id: filter + with: + filters: .github/paths-filter.yml build: if: ${{ needs.check-addon-changes.outputs.changedAddons != '[]' }} @@ -43,7 +35,7 @@ jobs: strategy: matrix: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} - arch: ${{ needs.check-addon-changes.outputs.architectures }} + arch: ["aarch64", "amd64", "armv7"] steps: - name: Check out repository