e5df154060
- Sostituito path interno pzeta_touch/shared-actions con URL assoluto gitea.com - Risolve errore autenticazione del runner su repo shared-actions privato - Il runner clona da gitea.com/Punga78/shared-actions senza credenziali
22 lines
568 B
YAML
22 lines
568 B
YAML
# Copia in: .gitea/workflows/release.yml
|
|
# Trigger: git tag v* → build Docker + crea release Gitea
|
|
#
|
|
# NOTA: i job girano in parallelo (non sequenziali con needs).
|
|
# Gitea bug #31900: needs + workflow_call + checkout causa errori di autenticazione.
|
|
|
|
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
docker-release:
|
|
uses: https://gitea.com/Punga78/shared-actions/.gitea/workflows/docker-release.yml@main
|
|
secrets: inherit
|
|
|
|
auto-release:
|
|
uses: https://gitea.com/Punga78/shared-actions/.gitea/workflows/auto-release.yml@main
|
|
secrets: inherit
|