Skip to content

Commit

Permalink
build: publish only "deno" crate on tags (denoland#8535)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bartlomieju authored Nov 28, 2020
1 parent d9b4182 commit 097babb
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 097babb

Please sign in to comment.