Skip to content

Commit

Permalink
chore: use nushell in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
oberrich committed Jan 10, 2025
1 parent 22a708c commit 1a4b895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
$installs | ForEach-Object {
if ($_.Url -ne $null) {
Write-Host "Downloading $_.Name from $_.Url..."
Write-Host "Downloading $($_.Name) from $($_.Url)..."
Invoke-WebRequest -Uri $_.Url -OutFile ("${{github.workspace}}\" + (Split-Path $_.Url -Leaf))
}
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
$output = Get-ChildItem -Path "target/${{ matrix.target }}/release/build/**/$($arch)_bindgen.rs" -Recurse | Select-Object -First 1
Copy-Item -Path $output.FullName -Destination "src/ffi/$($arch)_bindgen.rs"
Log "Moved $output to src/ffi/$($arch)_bindgen.rs"
Write-Host "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') [INFO] - Moved $output to src/ffi/$($arch)_bindgen.rs"
- name: Upload generated file as artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 1a4b895

Please sign in to comment.