Files
JdrBot/.gitea/workflows/release.yml
Skydust 17a094b727
All checks were successful
Production deployment / Building and pushing (push) Successful in 3m8s
Updated CI Token
2024-12-28 13:14:58 +01:00

24 lines
575 B
YAML

name: Release
on:
workflow_dispatch:
inputs:
semver:
type: choice
description: Choose the semver
options:
- "Major - Incompatible API changes"
- "Minor - Adding functionality in a backward compatible manner"
- "Patch - Backward compatible bug fixes"
jobs:
release:
name: Release
runs-on: skydust-runner
steps:
- name: Release
uses: https://gitea.skydust.fr/actions/create-release@main
with:
semver: ${{ inputs.semver }}
token: ${{ secrets.CI_TOKEN }}