Luke Tainton 11d64994d9
Some checks failed
CI / ci (pull_request) Failing after 1s
Enforce Conventional Commit PR Title / Validate PR Title (pull_request_target) Failing after 6s
chore(ci): move to reusable workflows
2025-01-12 18:36:04 +00:00

27 lines
770 B
YAML

name: Release
on:
workflow_dispatch:
schedule:
- cron: "0 9 * * 0"
jobs:
test:
uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/ci-python-uv-with-docker.yml
with:
python-version: 3.13
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
create_release:
name: Create Release
uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/create-release.yml
create_docker:
name: Create Docker Image
needs: create_release
if: ${{ needs.create_release.outputs.success == 'true' }}
uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/build-push-docker.yml
with:
release: ${{ needs.create_release.outputs.release_name }}