mirror of
				https://github.com/hannobraun/Fornjot
				synced 2025-11-04 06:07:19 +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: |
 | 
					        run: |
 | 
				
			||||||
          # Publish to crates.io
 | 
					          # Publish to crates.io
 | 
				
			||||||
          cargo run -p release-operator -- publish \
 | 
					          cargo run -p release-operator -- publish \
 | 
				
			||||||
            --token ${{ secrets.CARGO_REGISTRY_TOKEN }} \
 | 
					            --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
 | 
					 | 
				
			||||||
 | 
				
			|||||||
@ -4,7 +4,7 @@ mod release;
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
use crate::github::{Actions, GitHub};
 | 
					use crate::github::{Actions, GitHub};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
use crate::registry::{Crate, Registry};
 | 
					use crate::registry::Registry;
 | 
				
			||||||
use crate::release::Release;
 | 
					use crate::release::Release;
 | 
				
			||||||
use clap::{Args, Parser, Subcommand};
 | 
					use clap::{Args, Parser, Subcommand};
 | 
				
			||||||
use secstr::SecUtf8;
 | 
					use secstr::SecUtf8;
 | 
				
			||||||
@ -42,10 +42,6 @@ struct PublishArgs {
 | 
				
			|||||||
    #[clap(short, long, env = "CARGO_REGISTRY_TOKEN")]
 | 
					    #[clap(short, long, env = "CARGO_REGISTRY_TOKEN")]
 | 
				
			||||||
    token: SecUtf8,
 | 
					    token: SecUtf8,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /// Repeatable option to provide a list of paths to crates
 | 
					 | 
				
			||||||
    #[clap(short, long = "crate")]
 | 
					 | 
				
			||||||
    crates: Vec<Crate>,
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    /// Perform all checks without uploading
 | 
					    /// Perform all checks without uploading
 | 
				
			||||||
    #[clap(long)]
 | 
					    #[clap(long)]
 | 
				
			||||||
    dry_run: bool,
 | 
					    dry_run: bool,
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user