Standardize quotation styles in workflow files and remove unnecessary branch from pull request configuration

- Updated quotation marks in the package-and-publish.yml workflow for consistency.
- Removed the 'develop' branch from the pull_request section in package-android.yml to streamline the workflow configuration.
This commit is contained in:
Steven Enamakel
2026-02-10 16:45:49 +05:30
parent 123f1a5914
commit fa5c21d303
2 changed files with 12 additions and 13 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
@@ -320,7 +320,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' }}
# TDLib dylibs are now bundled natively via build.rs + tauri.conf.json macOS.frameworks
-1
View File
@@ -22,7 +22,6 @@ on:
pull_request:
branches:
- main
- develop
env:
IS_PR: ${{ github.event_name == 'pull_request' }}