Skip to content

Commit 5fb1141

Browse files
committed
v2.0.1
1 parent 89a83d7 commit 5fb1141

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727
node-version: 21
2828
- name: install Rust stable
2929
uses: dtolnay/rust-toolchain@stable
30+
with:
31+
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
32+
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
3033

3134
- name: install dependencies (ubuntu only)
3235
if: matrix.platform == 'ubuntu-22.04'
@@ -35,14 +38,15 @@ jobs:
3538
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
3639
3740
- name: install app dependencies and build it
38-
run: yarn --network-timeout 600000 && yarn tauri build
41+
run: yarn install
3942

4043
- uses: tauri-apps/tauri-action@v0
4144
env:
4245
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4346
with:
44-
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
47+
tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
4548
releaseName: "Version __VERSION__"
4649
releaseBody: "See the assets to download this version and install."
4750
releaseDraft: true
4851
prerelease: false
52+
args: ${{ matrix.args }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ner-annotator",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"private": true,
55
"type": "module",
66
"scripts": {

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"productName": "NER Annotator",
33
"mainBinaryName": "NER Annotator",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"identifier": "in.arunmozhi.ner-annotator",
66
"build": {
77
"beforeDevCommand": "yarn dev",

0 commit comments

Comments
 (0)