1
0
Fork 0
forked from lthn/blockchain

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.
This commit is contained in:
Snider 2025-09-24 22:21:43 +01:00
parent b84b99287d
commit 7b0c286cef
2 changed files with 4 additions and 6 deletions

View file

@ -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
asset-directory: ${{ github.workspace }}/build/apple-clang-arm64-release/src

View file

@ -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