From 01959290afe0d7533325370837de5e462560ad1c Mon Sep 17 00:00:00 2001 From: "K.K" <4ranci0ne@gmail.com> Date: Sun, 22 Sep 2024 11:08:14 +0900 Subject: [PATCH] Update gh-release.yml --- .github/workflows/gh-release.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/gh-release.yml b/.github/workflows/gh-release.yml index 8baab25..d3628e0 100644 --- a/.github/workflows/gh-release.yml +++ b/.github/workflows/gh-release.yml @@ -48,18 +48,13 @@ jobs: - name: install frontend dependencies run: bun install --frozen-lockfile # change this to npm, pnpm or bun depending on which one you use. - - name: Get current date - env: - TZ: 'Asia/Tokyo' - id: date - run: echo "RELEASE_DATE=$(date +'%Y.%m.%d')" >> $GITHUB_ENV - uses: tauri-apps/tauri-action@v0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tagName: ${{ env.RELEASE_DATE }} - releaseName: 'Version: ${{ env.RELEASE_DATE }}' + tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. + releaseName: 'App v__VERSION__' releaseBody: 'See the assets to download this version and install.' releaseDraft: true prerelease: false