Skip to content

Commit

Permalink
chore: view package 🔧
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwelbm committed Jan 8, 2025
1 parent 6954fa6 commit ae01fec
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/packages-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,15 @@ jobs:
cd ./../..
ls
Add-Type -AssemblyName System.IO.Compression.FileSystem
$zipFile = ".\mdz.1.42.0.nupkg"
$entries = [System.IO.Compression.ZipFile]::OpenRead($zipFile).Entries
$entries | ForEach-Object {
Write-Host $_.FullName
}
# install local test
choco install mdz --version=${{ needs.get_branch.outputs.version }} --prerelease --source="D:\a\midaz\midaz"
mdz version
Expand Down
2 changes: 1 addition & 1 deletion chocolatey/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ Write-Host "Copying $outputFile to $binDir"
Copy-Item -Path $outputFile -Destination $binDir -Force

# Confirm installation
Write-Host "Installation complete. The mdz executable is available globally.
Write-Host "Installation complete. The mdz executable is available globally."

0 comments on commit ae01fec

Please sign in to comment.