add release action
This commit is contained in:
parent
08e8ca1aa7
commit
c4492ee760
21
.gitea/workflows/release.yaml
Normal file
21
.gitea/workflows/release.yaml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
name: Releases
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- run:
|
||||||
|
make build
|
||||||
|
- uses: ncipollo/release-action@v1
|
||||||
|
with:
|
||||||
|
artifacts: "decl"
|
||||||
|
bodyFile: "body.md"
|
Loading…
Reference in New Issue
Block a user