diff options
| author | StevenWdV <stevenwdv@gmail.com> | 2022-02-10 13:00:12 +0100 |
|---|---|---|
| committer | StevenWdV <stevenwdv@gmail.com> | 2022-02-10 13:00:59 +0100 |
| commit | c5a12983d63c95aa0314d8b910cd06ef45974f16 (patch) | |
| tree | d9db7212e115ac0de9cffc69d85004210a9e4f52 | |
| parent | 3730f4a73bceb13c444261b0f576ea78cd584cb9 (diff) | |
Fix Windows Swift GitHub workflow
| -rw-r--r-- | .github/workflows/test-win.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/test-win.yml b/.github/workflows/test-win.yml index 0a09c84..09fde62 100644 --- a/.github/workflows/test-win.yml +++ b/.github/workflows/test-win.yml @@ -24,12 +24,6 @@ jobs: with: go-version: ^1.15 - run: make - - name: Set up Visual Studio shell - uses: egor-tensin/vs-shell@v2 - with: - arch: x64 - - name: Generate import library - run: exports/generate_lib.ps1 -DllPath (Get-ChildItem -Recurse exports/lib *.dll) - uses: actions/upload-artifact@v2 with: name: shared-lib @@ -119,7 +113,13 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: slashmo/install-swift@v0.1.0 + - name: Set up Visual Studio shell + uses: egor-tensin/vs-shell@v2 + with: + arch: x64 + - name: Generate import library + run: exports/generate_lib.ps1 -DllPath (Get-ChildItem -Recurse exports/lib *.dll) + - uses: rinsuki/setup-swift-windows with: version: 5.5 |
