Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
momaek committed Jul 9, 2024
1 parent c9aee3b commit 12a5379
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ jobs:
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
with:
tagName: Zenbot-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version.
releaseName: 'Zenbot v__VERSION__'
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"tauri:dev": "tauri dev",
"tauri": "tauri build"
"tauri": "tauri build",
"tauri:sign": "tauri signer generate"
},
"dependencies": {
"@headlessui/vue": "^1.7.22",
Expand Down
8 changes: 7 additions & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,13 @@
"csp": null
},
"updater": {
"active": false
"active": true,
"endpoints": ["https://github.com/momaek/tailweb/releases/latest/download/latest.json"],
"dialog": false,
"windows": {
"installMode": "passive"
},
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDkxQ0NFRTFBQ0YwN0Q2MjUKUldRbDFnZlBHdTdNa1JWRHVTbVhGVnJFN2UvS2RVTXZRREFyYUwxeURrWDhzQ0NDeFFuQ3QxL0UK"
},
"windows": [
{
Expand Down

0 comments on commit 12a5379

Please sign in to comment.