jx/.gitea/workflows/release.yaml
Matthew Rich 371b7e6b03
Some checks failed
Declarative Tests / test (push) Waiting to run
Lint / golangci-lint (push) Has been cancelled
fix indentation
2024-04-03 12:46:32 -07:00

22 lines
310 B
YAML

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"