From bef8b81f06402e3fbc5068552072dfacc5d37a3d Mon Sep 17 00:00:00 2001 From: Knutwurst <36196269+knutwurst@users.noreply.github.com> Date: Fri, 12 Jan 2024 10:41:15 +0100 Subject: [PATCH] Revert to Pythin 3,7 v1 --- .github/workflows/build-all.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 592a6aea..a4b91276 100755 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -89,10 +89,12 @@ jobs: - 4MAXP2_DGUS_TMC_BLT_11 steps: - - name: Install Python - uses: actions/setup-python@v4 + + - name: Setup Python 3.7 + uses: actions/setup-python@v1 with: - python-version: '3.10' + python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax. + architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified - name: Install PlatformIO run: | @@ -125,5 +127,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: Knuwurst-all-in-one-${{github.sha}} - path: .pio/build/${{ matrix.platform }}/${{ matrix.platform }}_v*.hex - + pattern: Knuwurst-all-in-one-${{github.sha}}-* + merge-multiple: true + path: | + .pio/build/${{ matrix.platform }}/${{ matrix.platform }}_v*.hex