Fix release (#3)
Some checks failed
CI / Typos (push) Successful in 7s
CI / Clippy (push) Successful in 51s
CI / Check version (push) Failing after 4s
CI / Build and test (push) Successful in 54s
Release / release (push) Failing after 10s

Reviewed-on: #3
This commit is contained in:
2025-05-04 10:35:56 -07:00
committed by Mark
parent 6c61ef10b2
commit 10625a13ea
4 changed files with 5 additions and 6 deletions

View File

@ -14,7 +14,6 @@ jobs:
with:
fetch-depth: 0
id: use-go-action
uses: https://gitea.com/actions/release-action@main
- uses: https://gitea.com/actions/release-action@main
with:
api_key: '${{secrets.RELEASE_TOKEN}}'
api_key: "${{secrets.RELEASE_TOKEN}}"

2
Cargo.lock generated
View File

@ -306,7 +306,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "pick"
version = "0.0.3"
version = "0.0.4"
dependencies = [
"anstyle",
"anyhow",

View File

@ -1,6 +1,6 @@
[package]
name = "pick"
version = "0.0.3"
version = "0.0.4"
edition = "2024"
#

View File

@ -1,7 +1,7 @@
{ lib, fetchgit, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "pick";
version = "0.0.2";
version = "0.0.4";
cargoLock.lockFile = src + /Cargo.lock;
src = builtins.fetchGit {