Skip to content

Commit

Permalink
fix: tauri product name
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrpdev committed Aug 30, 2024
1 parent 7d78ac1 commit b08fef7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version.
releaseName: 'App v__VERSION__'
tagName: aero-weather-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version.
releaseName: 'Aero Weather v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
prerelease: false
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"contributors": ["kilobyte <https://x.com/1000kilobytes>"],
"license": "GPL-3.0",
"private": false,
"version": "1.0.0",
"version": "1.0.1",
"type": "module",
"engines": {
"npm": ">=10.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aero-weather"
version = "1.0.0"
version = "1.0.1"
description = "A Tauri App"
authors = ["Piotr Płaczek <[email protected]>", "kilobyte <https://x.com/1000kilobytes>"]
license = "GPL-3.0"
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"productName": "aero-weather",
"version": "1.0.0",
"productName": "Aero Weather",
"version": "1.0.1",
"identifier": "dev.piotrp.aero-weather",
"build": {
"beforeDevCommand": "npm run dev",
Expand Down

0 comments on commit b08fef7

Please sign in to comment.