Skip to content

Commit 215cbfa

Browse files
marcnuluclaude
andcommitted
v0.2.5: fix choco push nupkg glob for PowerShell
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 57517e9 commit 215cbfa

5 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,8 @@ jobs:
126126
choco pack choco/recur.nuspec --version $version --output-directory choco/
127127
128128
- name: Push to Chocolatey
129-
run: choco push choco/recur.*.nupkg --source https://push.chocolatey.org/ --api-key ${{ secrets.CHOCOLATEY_API_KEY }}
129+
shell: pwsh
130+
run: |
131+
$nupkg = Get-ChildItem choco/*.nupkg | Select-Object -First 1
132+
Write-Host "Pushing $($nupkg.FullName)"
133+
choco push $nupkg.FullName --source https://push.chocolatey.org/ --api-key ${{ secrets.CHOCOLATEY_API_KEY }}

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "recur"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
edition = "2021"
55
authors = ["User Level Up Contributors"]
66
description = "Recursive hierarchical search tool for modern codebases - Honoring Dennis Ritchie's 1968 thesis (58 years of recursive hierarchies)"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div align="center">
22
<h1>recur</h1>
3-
<div class="version">v0.2.4</div>
3+
<div class="version">v0.2.5</div>
44
<p>
55
<a href="https://opensource.org/licenses/MIT"><img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-yellow.svg"></a>
66
<a href="https://www.rust-lang.org/"><img alt="Rust 1.70+" src="https://img.shields.io/badge/rust-1.70%2B-blue.svg"></a>

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
a.0.2.4
1+
a.0.2.5

0 commit comments

Comments
 (0)