diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d61c66..8812619 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,6 +51,9 @@ jobs: APPLE_ID: ${{ secrets.APPLE_ID }} APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} + TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} + TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }} + CI: false # Fixes DMG customization issue: https://github.com/tauri-apps/tauri/issues/1731 with: tagName: alic-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. releaseName: "Alic v__VERSION__" diff --git a/CHANGELOG.md b/CHANGELOG.md index 3478448..bd84ab8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Unreleased +# 2.0.7 + +- Try to get updater working # 2.0.6 diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index bdc36cb..074f394 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -2,7 +2,7 @@ "$schema": "https://schema.tauri.app/config/2", "mainBinaryName": "Alic", "productName": "Alic Image Compressor", - "version": "2.0.6", + "version": "2.0.7", "identifier": "io.kbl.alic", "build": { "beforeDevCommand": "bun run dev",