chore: standardize quotes in CI workflows and add changelog update workflow

- Updated quote styles in package-and-publish.yml and package-android.yml for consistency.
- Introduced a new workflow to automatically update the changelog based on commits since the last version tag.
This commit is contained in:
Steven Enamakel
2026-02-05 00:16:08 +05:30
parent 28d582d735
commit 6fa6b377fe
3 changed files with 17 additions and 17 deletions
+12 -12
View File
@@ -14,7 +14,7 @@ on:
branches:
- develop
workflow_run:
workflows: ["Version Bump"]
workflows: ['Version Bump']
types:
- completed
branches:
@@ -169,15 +169,15 @@ jobs:
fail-fast: false
matrix:
settings:
- platform: "macos-latest"
args: "--target aarch64-apple-darwin"
target: "aarch64-apple-darwin"
- platform: "macos-latest"
args: "--target x86_64-apple-darwin"
target: "x86_64-apple-darwin"
- platform: "ubuntu-22.04"
args: ""
target: ""
- platform: 'macos-latest'
args: '--target aarch64-apple-darwin'
target: 'aarch64-apple-darwin'
- platform: 'macos-latest'
args: '--target x86_64-apple-darwin'
target: 'x86_64-apple-darwin'
- platform: 'ubuntu-22.04'
args: ''
target: ''
runs-on: ${{ matrix.settings.platform }}
steps:
- name: Checkout
@@ -197,7 +197,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 24.x
cache: "yarn"
cache: 'yarn'
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
@@ -318,7 +318,7 @@ jobs:
# macOS 10.15+ required for std::filesystem used by llama.cpp
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.settings.platform == 'macos-latest' && '10.15' || '' }}
with:
args: "-c ${{ steps.config-overrides.outputs.json }} ${{ matrix.settings.args }}"
args: '-c ${{ steps.config-overrides.outputs.json }} ${{ matrix.settings.args }}'
includeDebug: ${{ needs.get-version.outputs.should-publish == '' && inputs.forceRelease != 'true' }}
includeRelease: ${{ needs.get-version.outputs.should-publish != '' || inputs.forceRelease == 'true' }}
# Don't let tauri-action upload for macOS - we need to bundle TDLib first and recreate the DMG
+5 -5
View File
@@ -5,7 +5,7 @@ name: Package Android
on:
workflow_run:
workflows: ["Version Bump"]
workflows: ['Version Bump']
types:
- completed
branches:
@@ -18,7 +18,7 @@ on:
workflow_dispatch:
inputs:
publish:
description: "Publish to release (requires main branch)"
description: 'Publish to release (requires main branch)'
type: boolean
default: false
@@ -126,7 +126,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 24.x
cache: "yarn"
cache: 'yarn'
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
@@ -136,8 +136,8 @@ jobs:
- name: Setup Java 17
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
distribution: 'temurin'
java-version: '17'
- name: Setup Android SDK
uses: android-actions/setup-android@v3