소스 검색

Fix mac CLI publish by using mac13 for runner (#2803)

Jonathan Kelley 10 달 전
부모
커밋
a84c2ec6d2
1개의 변경된 파일7개의 추가작업 그리고 3개의 파일을 삭제
  1. 7 3
      .github/workflows/publish.yml

+ 7 - 3
.github/workflows/publish.yml

@@ -54,13 +54,13 @@ jobs:
           - target: aarch64-pc-windows-msvc
             os: windows-latest
           - target: x86_64-apple-darwin
-            os: macos-latest
+            os: macos-13
           - target: aarch64-apple-darwin
             os: macos-latest
           - target: x86_64-unknown-linux-gnu
             os: ubuntu-latest
-          - target: aarch64-unknown-linux-gnu
-            os: ubuntu-latest
+          # - target: aarch64-unknown-linux-gnu
+          #   os: ubuntu-latest
     steps:
       - name: Checkout
         uses: actions/checkout@v4
@@ -69,6 +69,10 @@ jobs:
         if: matrix.platform.os == 'macos-latest'
         run: brew install openssl
 
+      - name: Install nasm for windows (tls)
+        if: ${{ matrix.platform.target == 'x86_64-pc-windows-msvc' }}
+        uses: ilammy/setup-nasm@v1
+
       - name: Install stable
         uses: dtolnay/rust-toolchain@master
         with: