this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26071 from kit-ty-kate/windows-ci

GHA windows: fix PATH on cache-miss

authored by

Raphaël Proust and committed by
GitHub
d3c97597 6646d5bd

+4 -4
+4 -4
.github/workflows/windows.yml
··· 28 28 run: | 29 29 Invoke-Expression "& { $(Invoke-RestMethod https://raw.githubusercontent.com/kit-ty-kate/opam/windows-installer.debug/shell/install.ps1) } -OpamBinDir 'D:\opam\bin' -NoSetPath -NoAdmin" 30 30 31 + - name: Add opam to PATH 32 + run: | 33 + "D:\opam\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append 34 + 31 35 - name: Init opam 32 36 if: steps.cache-opam.outputs.cache-hit != 'true' 33 37 run: opam init --yes --no-setup . ··· 40 44 D:\opam\bin 41 45 D:\opamroot 42 46 key: ${{ steps.cache-opam.outputs.cache-primary-key }} 43 - 44 - - name: Add opam to PATH 45 - run: | 46 - "D:\opam\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append 47 47 48 48 - name: Get changed files 49 49 id: changed-files