mirror of
https://github.com/hannobraun/Fornjot
synced 2025-08-05 16:56:06 +00:00
Remove unused argument
This commit is contained in:
parent
e048c02cec
commit
cd97c45f84
7
.github/workflows/cd.yml
vendored
7
.github/workflows/cd.yml
vendored
@ -65,9 +65,4 @@ jobs:
|
||||
run: |
|
||||
# Publish to crates.io
|
||||
cargo run -p release-operator -- publish \
|
||||
--token ${{ secrets.CARGO_REGISTRY_TOKEN }} \
|
||||
--crate crates/fj-math \
|
||||
--crate crates/fj-interop \
|
||||
--crate crates/fj-kernel \
|
||||
--crate crates/fj-export \
|
||||
--crate crates/fj-viewer
|
||||
--token ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
||||
|
@ -4,7 +4,7 @@ mod release;
|
||||
|
||||
use crate::github::{Actions, GitHub};
|
||||
|
||||
use crate::registry::{Crate, Registry};
|
||||
use crate::registry::Registry;
|
||||
use crate::release::Release;
|
||||
use clap::{Args, Parser, Subcommand};
|
||||
use secstr::SecUtf8;
|
||||
@ -42,10 +42,6 @@ struct PublishArgs {
|
||||
#[clap(short, long, env = "CARGO_REGISTRY_TOKEN")]
|
||||
token: SecUtf8,
|
||||
|
||||
/// Repeatable option to provide a list of paths to crates
|
||||
#[clap(short, long = "crate")]
|
||||
crates: Vec<Crate>,
|
||||
|
||||
/// Perform all checks without uploading
|
||||
#[clap(long)]
|
||||
dry_run: bool,
|
||||
|
Loading…
x
Reference in New Issue
Block a user