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 7557f11 commit c62aa2aCopy full SHA for c62aa2a
.github/workflows/validate.yml
@@ -102,6 +102,12 @@ jobs:
102
rm -rf ~/.config/cabal
103
rm -rf ~/.cache/cabal
104
105
+ # Ensures that the temp folder is in the same drive as the working folder in Windows,
106
+ # because RenameFileEx cannot move data between drives.
107
+ - name: Setup TMP environment variable
108
+ run: |
109
+ echo "TMP=${{ runner.temp }}" >> "$GITHUB_ENV"
110
+
111
- uses: actions/checkout@v4
112
113
# See https://github.com/haskell/cabal/blob/master/CONTRIBUTING.md#hackage-revisions
0 commit comments