Skip to content

Commit

Permalink
chore: update version and workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
OysterD3 committed Feb 24, 2024
1 parent 951ddb8 commit b9d7727
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: 'publish'
# This will trigger the action on each push to the `release` branch.
on:
push:
branches:
- main
tags:
- 'v*.*.*'

jobs:
publish-tauri:
Expand All @@ -13,7 +13,15 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
include:
- target: aarch64-apple-darwin
platform: macos-latest
- target: x86_64-apple-darwin
platform: macos-latest
- target: x86_64-unknown-linux-gnu
platform: ubuntu-20.04
- target: x86_64-pc-windows-msvc
platform: windows-latest

runs-on: ${{ matrix.platform }}
steps:
Expand Down Expand Up @@ -59,8 +67,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: Smartify-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'Smartify v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
prerelease: false
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "smartify",
"private": true,
"version": "0.0.0",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down

0 comments on commit b9d7727

Please sign in to comment.