21 lines
409 B
YAML
21 lines
409 B
YAML
name: 'CI'
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
release:
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.20'
|
|
|
|
- name: Use Go Action
|
|
id: use-go-action
|
|
uses: https://git.beisel.it/florian/gitea-release-drafter@v1
|
|
with:
|
|
username: foo |