31 lines
793 B
YAML
Raw Permalink Normal View History

name: Release
on:
workflow_dispatch:
schedule:
- cron: "0 9 * * 0"
jobs:
test:
name: Test
2025-02-10 14:25:02 +01:00
uses: https://git.tainton.uk/repos/roboluke/.gitea/workflows/ci.yml@main
with:
python-version: 3.13
secrets:
SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST_URL }}
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
create_release:
name: Create Release
needs: test
uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/create-release.yml@main
2025-01-12 20:06:13 +01:00
secrets:
ACTIONS_TOKEN: ${{ secrets.ACTIONS_TOKEN }}
2025-01-12 20:21:45 +00:00
2025-01-12 21:17:03 +01:00
print_release:
name: Print Release
runs-on: ubuntu-latest
needs: create_release
2025-01-12 20:21:45 +00:00
steps:
2025-01-12 21:31:30 +01:00
- run: echo "Created release ${{ needs.create_release.outputs.release_name }}."