mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-22 19:15:05 +03:00
32583600d4
Split Windows builds into shared x64 prep and arch-specific packaging, add comprehensive caching, verification scripts, and a PR smoke workflow. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
328 B
YAML
15 lines
328 B
YAML
name: Set release version
|
|
description: Writes versionName/versionCode into build.gradle.kts for CI
|
|
|
|
inputs:
|
|
version:
|
|
description: Semantic version (e.g. 1.2.3)
|
|
required: true
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Set version
|
|
shell: bash
|
|
run: bash scripts/ci-set-version.sh "${{ inputs.version }}"
|