mirror of
https://git.numenor-labs.us/dsfx.git
synced 2025-04-29 08:10:34 +00:00
refactor(cicd): add release workflow
This commit is contained in:
parent
05a5e1e140
commit
1876033e13
23
.gitea/workflows/release.yaml
Normal file
23
.gitea/workflows/release.yaml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
name: release
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
version:
|
||||||
|
description: "Version to release"
|
||||||
|
required: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: 1.24
|
||||||
|
- name: Create Tag
|
||||||
|
run: |
|
||||||
|
git tag "${{ gitea.event.inputs.version }}"
|
||||||
|
git push origin "${{ gitea.event.inputs.version }}"
|
Loading…
x
Reference in New Issue
Block a user