From 64bc47e251339b3d3aa4e32234ced605015a9167 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Wed, 17 Jul 2024 11:42:31 +0200 Subject: [PATCH] Fix GH action to push Ubuntu binaries --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 337d911..f93afbf 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -83,7 +83,7 @@ jobs: - name: Push Linux & macOS binaries if: | - (matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest') && + (contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')) && contains(matrix.python-version, '3.9') && github.event_name == 'push' && github.ref == 'refs/heads/master'