From c4492ee76008615dbf683dca96a129d2c406ffd6 Mon Sep 17 00:00:00 2001 From: Matthew Rich Date: Wed, 3 Apr 2024 12:42:12 -0700 Subject: [PATCH] add release action --- .gitea/workflows/release.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/release.yaml 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"