Browse Source

:green_heart: Fix publishing CLI

Gabriele Picco 1 year ago
parent
commit
97f43dbba1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/workflows/publish-packages.yml

+ 2 - 2
.github/workflows/publish-packages.yml

@@ -92,7 +92,7 @@ jobs:
           override: true
 
       - name: Build (linux/macos)
-        if: matrix.build.OS != 'windows-2022'
+        if: matrix.build.OS != 'macos-latest'
         uses: actions-rs/cargo@v1
         with:
           use-cross: true
@@ -100,7 +100,7 @@ jobs:
           args: --manifest-path=cli/Cargo.toml --release --locked --target ${{ matrix.build.TARGET }}
 
       - name: Build (windows)
-        if: matrix.build.OS == 'windows-2022'
+        if: matrix.build.OS == 'windows-latest'
         uses: actions-rs/cargo@v1
         with:
           command: build