Files
validate-json-by-json-schem…/.gitea/workflows/prerelease.yaml
t.behrendt 6bfb570257
All checks were successful
CI / Dry-Run (pull_request) Successful in 10s
ci: add pre-release workflow
2025-10-08 15:56:43 +02:00

22 lines
525 B
YAML

name: Prerelease
on:
workflow_dispatch:
jobs:
prerelease:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Increment tag
id: tag
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@0.1.1
with:
token: ${{ secrets.GITEA_TOKEN }}
prerelease: true
- uses: ./.gitea/actions/release-git-tag
with:
tag: ${{ steps.tag.outputs.new-tag }}