Skip to content

Commit 16a2c76

Browse files
committed
Enable signing and bump to 0.1.9
1 parent 2900455 commit 16a2c76

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ jobs:
2020
include:
2121
- platform: 'macos-latest'
2222
args: '--target aarch64-apple-darwin --bundles dmg'
23+
arch: 'aarch64'
2324
- platform: 'macos-latest'
2425
args: '--target x86_64-apple-darwin --bundles dmg'
26+
arch: 'x86_64'
2527

2628
runs-on: ${{ matrix.platform }}
2729
steps:
@@ -51,8 +53,8 @@ jobs:
5153
uses: tauri-apps/tauri-action@v0
5254
env:
5355
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54-
# TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
55-
# TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
56+
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
57+
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
5658
with:
5759
tagName: app-v__VERSION__ # the action automatically replaces __VERSION__ with the app version.
5860
releaseName: 'Presto v__VERSION__'
@@ -82,23 +84,23 @@ jobs:
8284
- name: Upload DMG (debug)
8385
uses: actions/upload-artifact@v4
8486
with:
85-
name: Presto-DMG
87+
name: Presto-DMG-${{ matrix.arch }}
8688
path: src-tauri/target/**/bundle/**/*.dmg
8789

8890
- name: Upload app bundle (debug)
8991
uses: actions/upload-artifact@v4
9092
with:
91-
name: Presto-app-bundle
93+
name: Presto-app-bundle-${{ matrix.arch }}
9294
path: src-tauri/target/**/bundle/**/*.app
9395

9496
- name: Upload tar.gz (debug)
9597
uses: actions/upload-artifact@v4
9698
with:
97-
name: Presto-tarball
99+
name: Presto-tarball-${{ matrix.arch }}
98100
path: src-tauri/target/**/bundle/**/*.tar.gz
99101

100102
- name: Upload signatures (debug)
101103
uses: actions/upload-artifact@v4
102104
with:
103-
name: Presto-signatures
105+
name: Presto-signatures-${{ matrix.arch }}
104106
path: src-tauri/target/**/bundle/**/*.sig

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "presto",
33
"private": true,
4-
"version": "0.1.8",
4+
"version": "0.1.9",
55
"type": "module",
66
"scripts": {
77
"tauri": "tauri",

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 = "presto"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
description = "A Tauri App"
55
authors = ["Stefano Novelli"]
66
edition = "2021"

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
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "presto",
4-
"version": "0.1.8",
4+
"version": "0.1.9",
55
"identifier": "com.presto.app",
66
"build": {
77
"frontendDist": "../src"

src/utils/theme-loader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ThemeLoader {
3939
// that gets updated by the build process or manually maintained
4040

4141
// This could be enhanced to use a build-time script that generates this list
42-
const knownThemes = [
42+
const knownThemes = [
4343
'espresso.css',
4444
'matrix.css',
4545
'pommodore64.css'

0 commit comments

Comments
 (0)