We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caab300 commit 2bf7562Copy full SHA for 2bf7562
.github/workflows/test-os.yml
@@ -61,6 +61,8 @@ jobs:
61
62
test-windows-amd64:
63
runs-on: windows-2022
64
+ needs:
65
+ - build-windows-amd64
66
steps:
67
-
68
name: Checkout
@@ -75,11 +77,11 @@ jobs:
75
77
uses: actions/download-artifact@v4
76
78
with:
79
name: buildkit-windows-amd64
- path: ${{ env.DESTDIR }}
80
+ path: ${{ github.workspace }}\bin
81
- name: Path
82
+ name: Add bin folder to Path
83
run: |
- $Env:Path
84
+ echo "${{ github.workspace }}\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
85
86
name: Test
87
env:
0 commit comments