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:
parent
d9b4182868
commit
097babb6fb
1 changed files with 1 additions and 14 deletions
15
.github/workflows/ci.yml
vendored
15
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue