Skip to content

Commit 925c6db

Browse files
authored
Merge pull request #5 from UniverLab/develop
fix: use CARGO_REGISTRY_TOKEN env var and allow dirty for publish
2 parents 600264a + 6c9eb73 commit 925c6db

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,6 @@ jobs:
167167
uses: dtolnay/rust-toolchain@stable
168168

169169
- name: Cargo publish
170-
run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
170+
env:
171+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
172+
run: cargo publish --allow-dirty

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ghscaff"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
description = "Interactive CLI wizard for creating and configuring GitHub repositories"
66
license = "MIT"

0 commit comments

Comments
 (0)