From 1a4b895c12c0650ec73e72129b6689504d371973 Mon Sep 17 00:00:00 2001 From: oberrich Date: Fri, 10 Jan 2025 07:33:30 +0100 Subject: [PATCH] chore: use nushell in ci --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index cd2cb5a..d8776e1 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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)) } @@ -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