b864af4bb2
- Aggiunto package.json con versione 1.0.0 - Nuovo workflow release.yml standalone: crea release Gitea su tag v* - Aggiornamento automatico tag major floating (v1 → latest v1.x.x) - Esempi aggiornati da @main a @v1 (tag major stabile) Flusso di release: git tag v1.0.0 && git push origin v1.0.0 → crea release Gitea con changelog → aggiorna tag floating v1
25 lines
637 B
YAML
25 lines
637 B
YAML
# Copia in: .gitea/workflows/ci.yml
|
|
# Trigger: push su qualsiasi branch → quality gates + build debug Android
|
|
#
|
|
# Il debug APK viene uplodato come artifact scaricabile dalla PR.
|
|
# Non richiede firma: usato per test interni su device fisico o emulatore.
|
|
|
|
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- main
|
|
|
|
jobs:
|
|
quality-gates:
|
|
uses: https://gitea.com/Punga78/shared-actions/.gitea/workflows/quality-gates.yml@v1
|
|
secrets: inherit
|
|
|
|
android-debug:
|
|
uses: https://gitea.com/Punga78/shared-actions/.gitea/workflows/capacitor-android.yml@v1
|
|
secrets: inherit
|
|
with:
|
|
build-type: debug
|
|
output-format: apk
|