From 5c3421418edaaf5c25e169184731f400ed292251 Mon Sep 17 00:00:00 2001 From: Ardian Date: Fri, 9 Aug 2024 11:14:10 +0200 Subject: [PATCH] chore: use `macos-14*` --- .github/workflows/release.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c9542e322..7e0914faf 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -178,21 +178,22 @@ jobs: run: poetry install - name: Set arch environment variable for macos-latest-large - if: matrix.os == 'macos-latest-large' + if: matrix.os == 'macos-14-large' run: echo "ARCH=x64" >> $GITHUB_ENV - name: Set arch environment variable for other macOS versions - if: matrix.os != 'macos-latest-large' + if: matrix.os != 'macos-14-large' run: echo "ARCH=arm64" >> $GITHUB_ENV - name: Build with PyInstaller run: | - poetry run pyinstaller --collect-data eth_account --collect-all aea --collect-all autonomy --collect-all operate --collect-all aea_ledger_ethereum --collect-all aea_ledger_cosmos --collect-all aea_ledger_ethereum_flashbots --hidden-import aea_ledger_ethereum --hidden-import aea_ledger_cosmos --hidden-import aea_ledger_ethereum_flashbots --hidden-import grpc --hidden-import openapi_core --collect-all google.protobuf --collect-all openapi_core --collect-all openapi_spec_validator --collect-all asn1crypto --hidden-import py_ecc --hidden-import pytz --onefile pyinstaller/trader_bin.py --name "trader_bin_$ARCH" + poetry run pyinstaller --collect-data eth_account --collect-all aea --collect-all autonomy --collect-all operate --collect-all aea_ledger_ethereum --collect-all aea_ledger_cosmos --collect-all aea_ledger_ethereum_flashbots --hidden-import aea_ledger_ethereum --hidden-import aea_ledger_cosmos --hidden-import aea_ledger_ethereum_flashbots --hidden-import grpc --hidden-import openapi_core --collect-all google.protobuf --collect-all openapi_core --collect-all openapi_spec_validator --collect-all asn1crypto --hidden-import py_ecc --hidden-import pytz --onefile pyinstaller/trader_bin.py --name trader_bin_${ARCH} - name: Upload Release Assets uses: actions/upload-artifact@v2 with: name: "trader_bin_$ARCH" path: "dist/trader_bin_$ARCH" + upload-assets: needs: build-macos-pyinstaller runs-on: ubuntu-latest