From 622cc9d0290882a7202a2f39c5db6cbfc20c01c8 Mon Sep 17 00:00:00 2001 From: harumiWeb Date: Tue, 7 Jan 2025 22:51:36 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=A2=E3=83=97=E3=83=AA=E3=82=B1=E3=83=BC?= =?UTF-8?q?=E3=82=B7=E3=83=A7=E3=83=B3=E3=81=AE=E3=83=A1=E3=82=BF=E3=83=87?= =?UTF-8?q?=E3=83=BC=E3=82=BF=E3=82=92=E6=9B=B4=E6=96=B0=E3=81=97=E3=80=81?= =?UTF-8?q?=E3=83=AA=E3=83=AA=E3=83=BC=E3=82=B9=E3=83=AF=E3=83=BC=E3=82=AF?= =?UTF-8?q?=E3=83=95=E3=83=AD=E3=83=BC=E3=82=92=E5=BC=B7=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 製品名を「avif_conv」から「Tavif」に変更し、識別子もそれに応じて更新しました。 - GitHub Actionsの公開ワークフローに`args`パラメータを追加し、リリース管理の柔軟性を向上させました。 これらの変更は、アプリケーションのブランディングをより反映し、リリースプロセスを効率化することを目的としています。 --- .github/workflows/publish.yaml | 3 ++- src-tauri/tauri.conf.json | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 9d920c8..c04fa99 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -53,4 +53,5 @@ jobs: releaseName: 'App v__VERSION__' releaseBody: 'See the assets to download this version and install.' releaseDraft: true - prerelease: false \ No newline at end of file + prerelease: false + args: ${{ matrix.args }} \ No newline at end of file diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index c94652c..d40b584 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,8 +1,8 @@ { "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", - "productName": "avif_conv", + "productName": "Tavif", "version": "0.1.0", - "identifier": "com.harumi.avif_conv", + "identifier": "com.harumi.tavif", "build": { "frontendDist": "../out", "devUrl": "http://localhost:3000",