mirror of
https://github.com/moku-project/Moku.git
synced 2026-06-13 01:09:56 -05:00
Fix: Workflow V2
This commit is contained in:
@@ -88,7 +88,13 @@ jobs:
|
||||
- name: Patch tauri.conf.json for CI
|
||||
shell: bash
|
||||
run: |
|
||||
sed -i 's/"beforeBuildCommand": "pnpm build"/"beforeBuildCommand": ""/' src-tauri/tauri.conf.json
|
||||
python3 -c "
|
||||
import json, pathlib
|
||||
p = pathlib.Path('src-tauri/tauri.conf.json')
|
||||
c = json.loads(p.read_text())
|
||||
c.setdefault('build', {})['beforeBuildCommand'] = ''
|
||||
p.write_text(json.dumps(c, indent=2))
|
||||
"
|
||||
|
||||
- name: Delete existing draft release
|
||||
shell: bash
|
||||
|
||||
Reference in New Issue
Block a user