b184b503c3
- elimina il file release.yml perché non più utilizzato nel flusso di lavoro
🔧 chore(ci): aggiorna trigger workflow CI
- aggiungi supporto per pull request su main
- ignora file markdown e cartella docs nei trigger
- migliora gestione delle branch monitorate
31 lines
731 B
YAML
31 lines
731 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:
|
|
- main
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'docs/**'
|
|
pull_request:
|
|
branches:
|
|
- 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
|