1
0
Fork 0

Added FUNDING.yml, release.yml

This commit is contained in:
マリウス 2023-01-05 15:40:13 -05:00
parent 4b9ebf66d9
commit 82aafbcd32
No known key found for this signature in database
GPG Key ID: 272ED814BF63261F
2 changed files with 28 additions and 0 deletions

1
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1 @@
custom: ["https://github.com/mrusme#support"]

27
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Release
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser
version: latest
args: release --rm-dist --timeout 80m
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}