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 f69c0e5 commit 6c06fe9Copy full SHA for 6c06fe9
.github/workflows/build.yml
@@ -35,10 +35,11 @@ jobs:
35
with:
36
path: |
37
build/
38
- key: ${{ runner.os }}-master
+ key: ${{ runner.os }}-${{ env.GITHUB_REF_NAME }}
39
- name: Create build dir
40
if: steps.cmake-cache.outputs.cache-hit != 'true'
41
run: |
42
+ rm -rf build
43
mkdir build
44
- name: Build
45
@@ -82,7 +83,8 @@ jobs:
82
83
84
85
- mkdir build
86
+ Remove-Item -path build -recurse
87
+ New-Item -ItemType Directory -Force -Path build
88
89
90
$env:MONO_INCLUDE_DIR = "C:\Program Files\Mono\include\mono-2.0\"
0 commit comments