Compare commits
2 commits
b1589a490e
...
af853a5d64
Author | SHA1 | Date | |
---|---|---|---|
af853a5d64 | |||
a578eef26f |
2 changed files with 40 additions and 1 deletions
38
.forgejo/workflows/release.yaml
Normal file
38
.forgejo/workflows/release.yaml
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
name: goreleaser
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
# run only against tags
|
||||||
|
tags:
|
||||||
|
- "*"
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
# packages: write
|
||||||
|
# issues: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
goreleaser:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: stable
|
||||||
|
# More assembly might be required: Docker logins, GPG, etc.
|
||||||
|
# It all depends on your needs.
|
||||||
|
- name: Run GoReleaser
|
||||||
|
uses: https://github.com/goreleaser/goreleaser-action@v6
|
||||||
|
with:
|
||||||
|
# either 'goreleaser' (default) or 'goreleaser-pro'
|
||||||
|
distribution: goreleaser
|
||||||
|
# 'latest', 'nightly', or a semver
|
||||||
|
version: "~> v1"
|
||||||
|
args: release --clean
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -24,4 +24,5 @@ _test
|
||||||
# secrets
|
# secrets
|
||||||
*.key
|
*.key
|
||||||
dnsimple-secret.yaml
|
dnsimple-secret.yaml
|
||||||
.decrypted~*
|
.decrypted~*
|
||||||
|
.op
|
Loading…
Reference in a new issue