Skip to content

Commit f0b8580

Browse files
authored
Merge pull request #137 from victoralvesf/development
Fix build version
2 parents 11e9e84 + d218b6a commit f0b8580

5 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/publish-docker.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Publish Docker Image
22

3-
on: workflow_dispatch
3+
on:
4+
workflow_dispatch:
5+
push:
6+
tags:
7+
- 'v*'
48

59
env:
610
REGISTRY: ghcr.io

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
cache: "pnpm"
7373

7474
- name: install frontend dependencies
75-
run: pnpm install --no-frozen-lockfile
75+
run: pnpm install --ignore-scripts
7676

7777
- uses: tauri-apps/tauri-action@v0
7878
env:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "aonsoku",
33
"private": true,
4-
"version": "0.8.2",
4+
"version": "0.8.3",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aonsoku"
3-
version = "0.8.2"
3+
version = "0.8.3"
44
description = "A modern desktop client for Navidrome/Subsonic servers."
55
authors = ["Victor Alves"]
66
edition = "2021"

0 commit comments

Comments
 (0)