diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-11-28 21:39:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-28 21:39:04 +0100 |
commit | 097babb6fbe313cdb1d749d510e9f8eb57ba899f (patch) | |
tree | cc56cc2e0b6ad1ffb114a963c6d894bdc44c2fd7 | |
parent | d9b41828684a5e1ed620d7324ad6c27a83687622 (diff) |
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.
-rw-r--r-- | .github/workflows/ci.yml | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 089821408..77b027ae5 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 |