ntfy-bridge/.forgejo/workflows/goreleaser.yaml

36 lines
778 B
YAML
Raw Normal View History

2023-09-01 17:21:00 +00:00
name: goreleaser
on:
push:
# run only against tags
tags:
- '*'
permissions:
contents: write
# packages: write
# issues: write
jobs:
goreleaser:
runs-on: ubuntu-latest
2023-09-01 19:09:35 +00:00
container:
image: catthehacker/ubuntu:full-latest
2023-09-01 17:21:00 +00:00
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v4
with:
go-version: stable
# More assembly might be required: Docker logins, GPG, etc. It all depends
# on your needs.
- uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean
env:
2023-09-01 19:09:35 +00:00
GITEA_TOKEN: ${{ secrets.GITHUB_TOKEN }}