Updating clear script release
All checks were successful
Rebase Remote Branches / rebase-branches (push) Successful in 3s

This commit is contained in:
2025-01-12 12:15:36 +01:00
parent c3b0fc619b
commit 0defe68db8
6 changed files with 132 additions and 13 deletions

View File

@@ -0,0 +1,23 @@
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 }}