Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,13 @@ jobs:
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
run: |
node scripts/build-all.js
npx tauri build --bundles nsis,msi
npx tauri build --bundles nsis

- name: Upload Windows Installer Artifact
uses: actions/upload-artifact@v4
with:
name: windows-installer
path: |
frontend/src-tauri/target/release/bundle/msi/*.msi
frontend/src-tauri/target/release/bundle/nsis/*
path: frontend/src-tauri/target/release/bundle/nsis/*
if-no-files-found: error

# ===========================================
Expand Down Expand Up @@ -270,7 +268,6 @@ jobs:
files: |
release-assets/*.deb
release-assets/*.rpm
release-assets/*.msi
release-assets/*.dmg
release-assets/*.AppImage
release-assets/*.exe
Expand Down
2 changes: 1 addition & 1 deletion backend/internal/domain/model/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ package model

// AppVersion stores the compiled version of the application.
// Automatically maintained by scripts/sync-version.js and injected into the go build via -ldflags.
var AppVersion = "v0.1.10-alpha"
var AppVersion = "v0.1.11-alpha"
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "frontend",
"private": true,
"version": "0.1.10-alpha",
"version": "0.1.11-alpha",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "devaulty"
version = "0.1.10-alpha"
version = "0.1.11-alpha"
description = "Devaulty Desktop Client"
authors = ["Matheus Cunha"]
license = ""
Expand Down
3 changes: 1 addition & 2 deletions frontend/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "Devaulty",
"version": "0.1.10-alpha",
"version": "0.1.11-alpha",
"identifier": "com.devaulty.app",
"build": {
"frontendDist": "../dist",
Expand Down Expand Up @@ -45,7 +45,6 @@
"appimage",
"rpm",
"nsis",
"msi",
"dmg"
],
"resources": [
Expand Down
Loading