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 22183de commit 4f99224Copy full SHA for 4f99224
.github/actions/get-msys2/action.yml
@@ -30,15 +30,15 @@ runs:
30
using: composite
31
steps:
32
- name: 'Install MSYS2'
33
- uses: msys2/[email protected]
+ id: msys2
34
+ uses: msys2/[email protected]
35
with:
36
install: 'autoconf tar unzip zip make'
37
path-type: minimal
- location: ${{ runner.tool_cache }}/msys2
38
+ release: false
39
40
# We can't run bash until this is completed, so stick with pwsh
41
- name: 'Set MSYS2 path'
42
run: |
- # Prepend msys2/msys64/usr/bin to the PATH
43
- echo "$env:RUNNER_TOOL_CACHE/msys2/msys64/usr/bin" >> $env:GITHUB_PATH
+ echo "${{ steps.msys2.outputs.msys2-location }}/usr/bin" >> $env:GITHUB_PATH
44
shell: pwsh
0 commit comments