use a relative dir for caching on windows

This commit is contained in:
Henry Hiles 2026-03-26 17:37:42 -04:00
commit 2f39949a2e
No known key found for this signature in database
2 changed files with 1 additions and 2 deletions

View file

@ -23,8 +23,6 @@ jobs:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v6 uses: actions/setup-go@v6
with:
cache: false
- name: Build with Flutter - name: Build with Flutter
run: | run: |

View file

@ -18,6 +18,7 @@ Future<void> main(List<String> args) => build(args, (input, output) async {
break; break;
case OS.windows: case OS.windows:
libFileName = "libgomuks.dll"; libFileName = "libgomuks.dll";
env = {"GOCACHE": "build/cache"};
break; break;
case OS.android: case OS.android:
libFileName = "libgomuks.so"; libFileName = "libgomuks.so";