From 101be535c872e97bf365b034cfccd3deecc0857e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 6 Jun 2024 22:02:18 +0100 Subject: [PATCH] build: fix publishing step (#1495) After adding the Android support the CI fails on tags because cargo publish was being run on linux GNU and linux Android. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5248cbc3..45ee9d40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -257,6 +257,7 @@ jobs: startsWith(github.ref, 'refs/tags/') && github.repository == 'denoland/rusty_v8' && startsWith(matrix.config.target , 'x86_64') && + !endsWith(matrix.config.target , 'android') && matrix.config.variant == 'debug' && runner.os == 'Linux' env: