Skip to content

Commit 49a045c

Browse files
committed
🐛 update build single app
1 parent dacbbe4 commit 49a045c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: .github/workflows/pake_build_single_app.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
URL: ${{ inputs.url }}
9999
run: |
100100
npm install
101-
node ./script/build_with_pake_cli.js
101+
npm run build:config
102102
103103
- name: Build for Ubuntu
104104
if: matrix.os == 'ubuntu-latest'
@@ -108,7 +108,7 @@ jobs:
108108
mv src-tauri/target/release/bundle/deb/*.deb output/linux/${{inputs.title}}_`arch`.deb
109109
mv src-tauri/target/release/bundle/appimage/*.AppImage output/linux/"${{inputs.title}}"_`arch`.AppImage
110110
111-
- name: Build for Macos
111+
- name: Build for macOS
112112
if: matrix.os == 'macos-latest'
113113
run: |
114114
rustup target add aarch64-apple-darwin

Diff for: package.json

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"build": "npm run tauri build --release",
3636
"build:debug": "npm run tauri build -- --debug",
3737
"build:mac": "npm run tauri build -- --target universal-apple-darwin",
38+
"build:config": "chmod +x ./script/build_with_app_config.js && node ./script/build_with_app_config.js",
3839
"analyze": "cd src-tauri && cargo bloat --release --crates",
3940
"tauri": "tauri",
4041
"cli": "rollup -c rollup.config.js --watch",

0 commit comments

Comments
 (0)