From 84b8c39191d123ea214f741733eb3805c494bd49 Mon Sep 17 00:00:00 2001 From: Alexi C Date: Fri, 30 May 2025 11:23:01 +0200 Subject: [PATCH] error --- workflows/builder.yaml | 50 ------------------------------------------ 1 file changed, 50 deletions(-) delete mode 100644 workflows/builder.yaml diff --git a/workflows/builder.yaml b/workflows/builder.yaml deleted file mode 100644 index d9bd7ae..0000000 --- a/workflows/builder.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: Builder - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - init: - runs-on: ubuntu-latest - name: Initialize builds - outputs: - changed_addons: ${{ steps.changed_addons.outputs.addons }} - changed: ${{ steps.changed_addons.outputs.changed }} - steps: - - name: Check out the repository - uses: actions/checkout@v4 - - - name: Get changed add-ons - id: changed_addons - uses: home-assistant/actions/helpers/changed-addons@master - - build: - runs-on: ubuntu-latest - name: Build ${{ matrix.addon }} (${{ matrix.arch }}) - needs: init - if: needs.init.outputs.changed == 'true' - strategy: - matrix: - addon: ${{ fromJson(needs.init.outputs.changed_addons) }} - arch: ["aarch64", "amd64", "armhf", "armv7", "i386"] - - steps: - - name: Check out repository - uses: actions/checkout@v4 - - - name: Get information - id: info - uses: home-assistant/actions/helpers/info@master - with: - path: "./${{ matrix.addon }}" - - - name: Build ${{ matrix.addon }} (${{ matrix.arch }}) - uses: home-assistant/builder@master - with: - args: | - --${{ matrix.arch }} \ - --target /data/${{ matrix.addon }} \ - --generic ${{ steps.info.outputs.version }} \ No newline at end of file