mirror of
https://github.com/yewprint/yewprint
synced 2024-11-22 03:23:03 +00:00
10 lines
348 B
TOML
10 lines
348 B
TOML
[build]
|
|
publish = "target/release/dist"
|
|
|
|
# All deploys from the Production branch
|
|
[context.production]
|
|
command = "cargo xtask dist --release && cargo doc --workspace --all-features --no-deps && mv target/doc target/release/dist/api"
|
|
|
|
# all deploys generated from a pull/merge request
|
|
[context.deploy-preview]
|
|
command = "cargo xtask dist --release"
|