From b3175e2c1c221b542bbd7db14f0c4a220b67f399 Mon Sep 17 00:00:00 2001 From: Mark Date: Sun, 4 May 2025 10:34:05 -0700 Subject: [PATCH] Fix release --- .gitea/workflows/release.yml | 5 ++--- Cargo.lock | 2 +- Cargo.toml | 2 +- default.nix | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index f50f132..455eb99 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -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}}' \ No newline at end of file + api_key: "${{secrets.RELEASE_TOKEN}}" diff --git a/Cargo.lock b/Cargo.lock index 8788a9e..10e89e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -306,7 +306,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pick" -version = "0.0.3" +version = "0.0.4" dependencies = [ "anstyle", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 40500de..a0f0ba6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pick" -version = "0.0.3" +version = "0.0.4" edition = "2024" # diff --git a/default.nix b/default.nix index a38c710..ae92cc6 100644 --- a/default.nix +++ b/default.nix @@ -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 {