Skip to content

Commit

Permalink
Remove unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Jun 20, 2023
1 parent e048c02 commit cd97c45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
6 changes: 1 addition & 5 deletions tools/release-operator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit cd97c45

Please sign in to comment.