Compare commits

...

2 Commits

Author SHA1 Message Date
David Baker
6bd2276789 Update snapshot
Presumably some minor aliasing difference somehow
2024-10-14 11:13:58 +01:00
David Baker
e83dfd1aef Fix nightly / release building
Unsure what would have changed here but electron doesn't seem to like
even giving its version without a setuid sandbox helper now.
2024-10-14 10:27:11 +01:00
2 changed files with 2 additions and 1 deletions

View File

@ -65,7 +65,8 @@ jobs:
# We split this out to save the build_* scripts having to do it to make use of `hashFiles` in the cache action
- name: Generate cache hash files
run: |
yarn run --silent electron --version > electronVersion
# Add --no-sandbox as otherwise it fails because the helper isn't setuid root. It's only getting the version.
yarn run --silent electron --no-sandbox --version > electronVersion
cat package.json | jq -c .hakDependencies | sha1sum > hakHash
find hak -type f -print0 | xargs -0 sha1sum >> hakHash
find scripts/hak -type f -print0 | xargs -0 sha1sum >> hakHash

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.0 MiB