From 097babb6fbe313cdb1d749d510e9f8eb57ba899f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sat, 28 Nov 2020 21:39:04 +0100 Subject: [PATCH] build: publish only "deno" crate on tags (#8535) This commit updates CI script to publish only "deno" crate on tags. Following crates are not automatically published anymore: - deno_core - deno_web - deno_fetch - deno_crypto Before this commit creating a new release required to bump version on all above crates even though in practice they rarely change. --- .github/workflows/ci.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0898214088..77b027ae5c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -274,18 +274,5 @@ jobs: env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} run: | - cd core - cargo publish - sleep 30 - cd ../op_crates/web - cargo publish - sleep 30 - cd ../fetch - cargo publish - sleep 30 - cd ../crypto - cargo publish - sleep 30 - cd ../../cli - sleep 30 + cd cli cargo publish