Compare commits

...

4 Commits

Author SHA1 Message Date
bf67b953f1 Testing windows 2023-08-21 14:23:59 -04:00
aabe8cecee Move to env for windows 2023-08-21 13:57:38 -04:00
73eeb86581 Add cat 2023-08-21 13:33:07 -04:00
bddf013c4d Allow local tauri builds without updater keys
Fixes #300
2023-08-21 15:28:13 +00:00
2 changed files with 8 additions and 1 deletions

View File

@ -110,6 +110,13 @@ jobs:
- name: Fix format - name: Fix format
run: yarn fmt run: yarn fmt
- name: Set tauri.updater.active to true
env:
TAURI_CONF: src-tauri/tauri.conf.json
run: |
echo "$(jq '.tauri.updater.active=true' $TAURI_CONF --indent 2)" > $TAURI_CONF
echo "$(jq '.tauri.updater.active=true' $TAURI_CONF --indent 2)"
- name: Build the app for the current platform (no upload) - name: Build the app for the current platform (no upload)
uses: tauri-apps/tauri-action@v0 uses: tauri-apps/tauri-action@v0
env: env:

View File

@ -80,7 +80,7 @@
"csp": null "csp": null
}, },
"updater": { "updater": {
"active": true, "active": false,
"endpoints": [ "endpoints": [
"https://dl.kittycad.io/releases/modeling-app/last_update.json" "https://dl.kittycad.io/releases/modeling-app/last_update.json"
], ],