mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
17 lines
337 B
Bash
Executable File
17 lines
337 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
git pull || true
|
|
|
|
yarn changelog
|
|
cargo mono bump -i
|
|
# Ensure that Cargo.lock is up-to-date
|
|
cargo metadata --format-version 1 > /dev/null
|
|
|
|
# Ensure that dependencies are all verified
|
|
./scripts/crev/verify.sh
|
|
|
|
git add -A
|
|
git commit -m 'chore: Publish crates'
|
|
git push --no-verify
|
|
cargo mono publish --no-verify |