commit 54843f914e87a1396604d96ee9205f36d0accfbc
parent 1028d83470cd2478b036c944e967ed701f98d173
Author: Erik Loualiche <eloualic@umn.edu>
Date: Fri, 6 Feb 2026 23:04:19 -0600
Fix Windows artifact packaging in build-ffi workflow
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build-ffi.yml b/.github/workflows/build-ffi.yml
@@ -52,11 +52,11 @@ jobs:
- name: Package artifact (Windows)
if: runner.os == 'Windows'
- shell: bash
+ shell: pwsh
run: |
cd rust/nickel-jl/target/${{ matrix.target }}/release
tar -czvf ${{ matrix.artifact_name }} ${{ matrix.artifact }}
- mv ${{ matrix.artifact_name }} ${{ github.workspace }}/
+ Move-Item ${{ matrix.artifact_name }} ${{ github.workspace }}
- name: Upload artifact
uses: actions/upload-artifact@v4