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 54b1b12 commit 9d545d1Copy full SHA for 9d545d1
.github/workflows/reusable-emscripten.yml
@@ -29,6 +29,7 @@ jobs:
29
h = hashlib.sha256()
30
h.update(json.dumps(config["dependencies"], sort_keys=True).encode())
31
h.update(Path("Platforms/emscripten/make_libffi.sh").read_bytes())
32
+ h.update(b'1') # Update to explicitly bust cache
33
emsdk_cache = Path(os.environ["RUNNER_TEMP"]) / "emsdk-cache"
34
with open(os.environ["GITHUB_OUTPUT"], "a") as f:
35
f.write(f"emscripten-version={config['emscripten-version']}\n")
0 commit comments