Skip to content

Commit

Permalink
Fix release nym-vpn-cli workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
octol committed Feb 12, 2024
1 parent 4cc4349 commit b0833c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-nym-vpn-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
build-wireguard-go:
strategy:
matrix:
os: [ubuntu-22.04, macos-latest, custom-runner-mac-m1]
os: [ubuntu-22.04, macos-12, custom-runner-mac-m1]
uses: ./.github/workflows/build-wireguard-go.yml
with:
os: ${{ matrix.os }}
Expand All @@ -34,7 +34,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-latest, custom-runner-mac-m1]
os: [ubuntu-22.04, macos-12, custom-runner-mac-m1]
runs-on: ${{ matrix.os }}
env:
WG_GO_LIB_PATH: ${{ github.workspace }}/lib
Expand Down Expand Up @@ -86,9 +86,9 @@ jobs:
platform_arch=ubuntu-22.04_x86_64
elif ${{ contains(matrix.os, 'ubuntu-20.04') }}; then
platform_arch=ubuntu-20.04_x86_64
elif ${{ contains(matrix.os, 'mac-m1') }}; then
elif ${{ matrix.os == 'custom-runner-mac-m1' || matrix.os == 'macos-13-xlarge' || matrix.os == 'macos-14' }}; then
platform_arch=macos_aarch64
elif ${{ contains(matrix.os, 'macos') }}; then
elif ${{ matrix.os == 'macos-12' || matrix.os == 'macos-13' }}; then
platform_arch=macos_x86_64
else
echo " ✗ unknown platform/arch [${{ matrix.os }}]"
Expand Down

0 comments on commit b0833c2

Please sign in to comment.