mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-25 10:22:55 +08:00
#### PR Dependency Tree * **PR #14503** 👈 This tree was auto-generated by [Charcoal](https://github.com/danerwilliams/charcoal) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Improved CI efficiency with targeted Rust test detection and workspace-scoped builds for faster, more focused runs. * Added workflow static-analysis configuration and refined Node/Playwright/Electron build flags and platform controls. * Added a new test workspace dependency and TypeScript project reference for blocksuite tests; updated workspace wiring for focused builds. * Cleaned CI environment handling for server test orchestration. * **Bug Fixes** * Hardened mobile release steps (safer credential handling and quoting) to improve iOS/Android publish reliability. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
18 lines
449 B
YAML
18 lines
449 B
YAML
name: Setup Version
|
|
description: 'Setup Version'
|
|
inputs:
|
|
app-version:
|
|
description: 'App Version'
|
|
required: true
|
|
ios-app-version:
|
|
description: 'iOS App Store Version (Optional, use App version if empty)'
|
|
required: false
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: 'Write Version'
|
|
shell: bash
|
|
env:
|
|
IOS_APP_VERSION: ${{ inputs.ios-app-version }}
|
|
run: ./scripts/set-version.sh ${{ inputs.app-version }}
|