Files
pdga-rating/.github/workflows/release-please.yml
T
Samuel Enocsson 50a60b29e7 ci: migrate to Gitea Actions for docker build
Origin moved from GitHub to Gitea. release-please-action and ghcr.io are
GitHub-specific and don't work on Gitea Actions, so the release-please
flow is dropped in favor of manual tag-trigger docker builds.

- Add .gitea/workflows/docker-build.yml: builds and pushes to
  gitea.shcizo.se/shcizo/pdga-rating on tag push (v*)
- Remove release-please-config.json and .release-please-manifest.json
- Neutralize .github/workflows/release-please.yml to workflow_dispatch
  (kept as reference; can't be deleted via tooling under .github/)
2026-05-22 08:50:04 +02:00

14 lines
472 B
YAML

# Deprecated: replaced by .gitea/workflows/docker-build.yml (tag-trigger).
# Origin moved from GitHub to Gitea; release-please-action and ghcr.io are
# GitHub-only and don't run on Gitea Actions. Trigger changed to manual-only
# so neither GitHub nor Gitea Actions will auto-run this file.
name: Release Please (deprecated)
on:
workflow_dispatch:
jobs:
noop:
runs-on: ubuntu-latest
steps:
- run: echo "Deprecated. See .gitea/workflows/docker-build.yml"