Skip to content

Commit b0833c2

Browse files
committed
Fix release nym-vpn-cli workflow
1 parent 4cc4349 commit b0833c2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release-nym-vpn-cli.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
build-wireguard-go:
2525
strategy:
2626
matrix:
27-
os: [ubuntu-22.04, macos-latest, custom-runner-mac-m1]
27+
os: [ubuntu-22.04, macos-12, custom-runner-mac-m1]
2828
uses: ./.github/workflows/build-wireguard-go.yml
2929
with:
3030
os: ${{ matrix.os }}
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
fail-fast: false
3636
matrix:
37-
os: [ubuntu-22.04, macos-latest, custom-runner-mac-m1]
37+
os: [ubuntu-22.04, macos-12, custom-runner-mac-m1]
3838
runs-on: ${{ matrix.os }}
3939
env:
4040
WG_GO_LIB_PATH: ${{ github.workspace }}/lib
@@ -86,9 +86,9 @@ jobs:
8686
platform_arch=ubuntu-22.04_x86_64
8787
elif ${{ contains(matrix.os, 'ubuntu-20.04') }}; then
8888
platform_arch=ubuntu-20.04_x86_64
89-
elif ${{ contains(matrix.os, 'mac-m1') }}; then
89+
elif ${{ matrix.os == 'custom-runner-mac-m1' || matrix.os == 'macos-13-xlarge' || matrix.os == 'macos-14' }}; then
9090
platform_arch=macos_aarch64
91-
elif ${{ contains(matrix.os, 'macos') }}; then
91+
elif ${{ matrix.os == 'macos-12' || matrix.os == 'macos-13' }}; then
9292
platform_arch=macos_x86_64
9393
else
9494
echo " ✗ unknown platform/arch [${{ matrix.os }}]"

0 commit comments

Comments
 (0)