swarmproxy/.gitea/workflows/release.yaml
OCram85 438ed033d4
All checks were successful
ci / docker (push) Successful in 28s
release / release (push) Successful in 29s
add changelog + release setup
2023-07-12 12:04:24 +02:00

28 lines
597 B
YAML

name: release
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: setup go
uses: actions/setup-go@v3
with:
go-version: '>=1.20.1'
- name: Use Go Action
id: use-go-action
uses: actions/release-action@main
with:
files: |-
CHANGELOG.md
api_key: '${{ secrets.TOKEN }}'
body: |
> :bulb: **Note:** See [CHANGELOG.md](src/branch/main/CHANGELOG.md) for recent changes.