From 7b0c286ceffb4964f7c7fda755891331d5e83cb0 Mon Sep 17 00:00:00 2001 From: Snider Date: Wed, 24 Sep 2025 22:21:43 +0100 Subject: [PATCH] Update build workflows for macOS and Windows Changed build commands and artifact directories in macOS and Windows GitHub Actions workflows to use new target names and paths. Removed 'connectivity_tool' from CLI artifacts. --- .github/workflows/build-macos-arm64.yml | 5 ++--- .github/workflows/build-windows.yml | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-macos-arm64.yml b/.github/workflows/build-macos-arm64.yml index 6437dda0..118a8d15 100644 --- a/.github/workflows/build-macos-arm64.yml +++ b/.github/workflows/build-macos-arm64.yml @@ -50,7 +50,7 @@ jobs: cache_packages: true - name: Compile Release - run: make mac_arm + run: make apple-clang-arm64-release - name: CLI Artifacts if: ${{ inputs.build-cli }} @@ -62,6 +62,5 @@ jobs: assets: | zanod simplewallet - connectivity_tool asset-type: 'cli' - asset-directory: ${{ github.workspace }}/build/mac_arm/src \ No newline at end of file + asset-directory: ${{ github.workspace }}/build/apple-clang-arm64-release/src \ No newline at end of file diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index d1194998..7d804564 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -46,7 +46,7 @@ jobs: cache_packages: true - name: Compile Release - run: make win_x86_64_msvc + run: make msvc-194-amd64 - name: CLI Artifacts if: ${{ inputs.build-cli }} @@ -58,6 +58,5 @@ jobs: assets: | zanod.exe simplewallet.exe - connectivity_tool.exe asset-type: 'cli' - asset-directory: ${{ github.workspace }}/build/win_x86_64_msvc/src/Release + asset-directory: ${{ github.workspace }}/build/msvc-194-amd64/src/Release