From 535fe2686b145ed99c8a913ae1a7700f3678b7a6 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 23 Jun 2022 14:11:06 +0200 Subject: [PATCH] Use new wheels builder (#13001) --- .github/workflows/release.yaml | 30 ++++-------------------------- 1 file changed, 4 insertions(+), 26 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c7d3d8fa9c..a556ef94a7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -74,33 +74,11 @@ jobs: version=$(echo "${{ github.ref }}" | awk -F"/" '{print $NF}' ) echo "home-assistant-frontend==$version" > ./requirements.txt - - name: Upload requirements.txt - uses: actions/upload-artifact@v2 - with: - name: requirements - path: ./requirements.txt - - build-wheels: - name: Build wheels for ${{ matrix.arch }} - needs: wheels-init - runs-on: ubuntu-latest - strategy: - matrix: - arch: ["aarch64", "armhf", "armv7", "amd64", "i386"] - tag: - - "3.9-alpine3.14" - steps: - - name: Download requirements.txt - uses: actions/download-artifact@v2 - with: - name: requirements - - name: Build wheels - uses: home-assistant/wheels@master + uses: home-assistant/wheels@2022.06.7 with: - tag: ${{ matrix.tag }} - arch: ${{ matrix.arch }} - wheels-host: ${{ secrets.WHEELS_HOST }} + abi: cp310 + tag: musllinux_1_2 + arch: amd64 wheels-key: ${{ secrets.WHEELS_KEY }} - wheels-user: wheels requirements: "requirements.txt"