diff --git a/.github/workflows/release-tamagotchi.yml b/.github/workflows/release-tamagotchi.yml index 9af5dd625..7ff636e64 100644 --- a/.github/workflows/release-tamagotchi.yml +++ b/.github/workflows/release-tamagotchi.yml @@ -29,6 +29,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Get Product Name + run: | + echo "PRODUCT_NAME=$(jq -r '.productName' apps/stage-tamagotchi/src-tauri/tauri.conf.json)" >> $GITHUB_ENV + - name: Install pnpm uses: pnpm/action-setup@v4 with: @@ -69,5 +73,5 @@ jobs: - name: Upload To GitHub Releases uses: softprops/action-gh-release@v2 with: - files: bundle/airi_* + files: bundle/${{ env.PRODUCT_NAME }}_* append_body: true