1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-31 03:29:10 -05:00

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.
This commit is contained in:
Bartek Iwańczuk 2020-11-28 21:39:04 +01:00 committed by GitHub
parent d9b4182868
commit 097babb6fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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