hotfix: windows style paths

This commit is contained in:
Hazel 2023-10-09 21:03:49 +01:00
parent effae70223
commit db563a4967
1 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ jobs:
- name: Make HXCPP cache dir - name: Make HXCPP cache dir
shell: bash shell: bash
run: | run: |
mkdir -p ${{ runner.temp }}/hxcpp_cache mkdir -p ${{ runner.temp }}\\hxcpp_cache
- name: Restore build cache - name: Restore build cache
id: cache-build-win id: cache-build-win
uses: actions/cache@v3 uses: actions/cache@v3
@ -63,7 +63,7 @@ jobs:
path: | path: |
.haxelib .haxelib
export export
${{ runner.temp }}/hxcpp_cache ${{ runner.temp }}\\hxcpp_cache
key: ${{ runner.os }}-build-win-${{ github.ref_name }} key: ${{ runner.os }}-build-win-${{ github.ref_name }}
restore-keys: | restore-keys: |
${{ runner.os }}-build-win- ${{ runner.os }}-build-win-
@ -72,7 +72,7 @@ jobs:
haxelib run lime build windows -release -DNO_REDIRECT_ASSETS_FOLDER haxelib run lime build windows -release -DNO_REDIRECT_ASSETS_FOLDER
dir dir
env: env:
HXCPP_COMPILE_CACHE: "${{ runner.temp }}/hxcpp_cache" HXCPP_COMPILE_CACHE: "${{ runner.temp }}\\hxcpp_cache"
- uses: ./.github/actions/upload-itch - uses: ./.github/actions/upload-itch
with: with:
butler-key: ${{ secrets.BUTLER_API_KEY }} butler-key: ${{ secrets.BUTLER_API_KEY }}