Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #20 from uhKayla/updater
Browse files Browse the repository at this point in the history
Configure updater
  • Loading branch information
uhKayla authored Jul 3, 2024
2 parents bba9305 + 4978f6a commit a80e781
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish.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: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version.
releaseName: "App v__VERSION__"
Expand Down
9 changes: 7 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "SpectreVRC",
"version": "0.1.9"
"version": "0.1.10"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -63,7 +63,12 @@
"csp": null
},
"updater": {
"active": false
"active": true,
"endpoints": [
"https://github.com/uhKayla/Spectre/master/latest.json"
],
"dialog": true,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEQzQUY4OTIzMDVDOTgzMjQKUldRa2c4a0ZJNG12MDBvNHdIa0VRMXhKcVhqbTgyWXVTTVBoUmFGcEowMFd5cjVpbEoxc1hha3AK"
},
"windows": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<DropdownMenu.Separator />
<DropdownMenu.Item on:click={logout}>Logout</DropdownMenu.Item>
<DropdownMenu.Separator />
<DropdownMenu.Item disabled>v0.1.8-ALPHA</DropdownMenu.Item>
<DropdownMenu.Item disabled>v0.1.10-ALPHA</DropdownMenu.Item>
</DropdownMenu.Content>
</DropdownMenu.Root>
</div>
Expand Down

0 comments on commit a80e781

Please sign in to comment.