Skip to content

Commit d636fd2

Browse files
committed
fix(ci): fix missing prefix v on release tags, that lead recreation of a tag without v prefix
1 parent 6f419ef commit d636fd2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
with:
157157
# This pulls from the "Get Changelog Entry" step above, referencing it's ID to get its outputs object.
158158
# See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
159-
tag_name: ${{ steps.changelog_reader.outputs.version }}
159+
tag_name: ${{ github.ref }}
160160
release_name: Release ${{ steps.changelog_reader.outputs.version }}
161161
body: ${{ steps.changelog_reader.outputs.changes }}
162162
prerelease: ${{ steps.changelog_reader.outputs.status == 'prereleased' }}

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ github-actions = { repository = "sassman/t-rec-rs", branch = "main", workflow =
1717
maintenance = { status = "actively-developed" }
1818

1919
[dependencies]
20-
clap = "2.33"
20+
clap = "2.33.3"
2121
image = "0.23.12"
22-
anyhow = "1.0"
23-
tempfile = "3.1"
22+
anyhow = "1.0.35"
23+
tempfile = "3.1.0"
2424

2525
[target.'cfg(target_os = "macos")'.dependencies]
2626
objc_id = "0.1.1"

0 commit comments

Comments
 (0)