Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): No Tag #76

Merged
merged 1 commit into from
Oct 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
- uses: baptiste0928/cargo-install@v2
with:
crate: cargo-release
- run: CARGO_REGISTRY_TOKEN=${CRATES_TOKEN} cargo release --execute --no-confirm --no-push
- run: CARGO_REGISTRY_TOKEN=${CRATES_TOKEN} cargo release --execute --no-confirm --no-push --no-tag
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resolver = "2"

[workspace.package]
description = "First class, scalable rust project generator with batteries included."
version = "0.1.57"
version = "0.1.58"
edition = "2021"
license = "MIT"
authors = ["refcell"]
Expand Down
2 changes: 1 addition & 1 deletion bin/amble/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ pub fn run() -> Result<()> {
if !dry_run && !overwrite {
tracing::warn!("Running in non-dry run mode.");
tracing::warn!("This action may be destructive.");
if !Confirm::new("Running amble in non-dry mode, are you sure you wish to proceed?")
if !Confirm::new("Running amble in without dry mode, are you sure you wish to proceed?")
.prompt()?
{
println!("Phew, close call... aborting");
Expand Down
2 changes: 1 addition & 1 deletion crates/preamble/etc/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
- uses: baptiste0928/cargo-install@v2
with:
crate: cargo-release
- run: CARGO_REGISTRY_TOKEN=${CRATES_TOKEN} cargo release --execute --no-confirm --no-push
- run: CARGO_REGISTRY_TOKEN=${CRATES_TOKEN} cargo release --execute --no-confirm --no-push --no-tag
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
2 changes: 1 addition & 1 deletion crates/preamble/src/ci.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub fn write_github_workflows(
Ok(())
}

/// Creates ci workflows for github actions.
/// Creates github action ci workflows.
#[instrument(name = "ci", skip(dir, dry, ci, tree))]
pub fn create(
dir: &Path,
Expand Down
Loading