Remove unused argument

This commit is contained in:
Hanno Braun 2023-06-20 11:18:56 +02:00
parent e048c02cec
commit cd97c45f84
2 changed files with 2 additions and 11 deletions

View File

@ -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 }}

View File

@ -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,