diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml new file mode 100644 index 0000000..d76c09a --- /dev/null +++ b/.gitea/workflows/release.yaml @@ -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"