awl/.gitea/workflows/release.yaml
Sam Therapy 26ef04b969
All checks were successful
Mirror Push / mirror (push) Successful in 8s
Test / test (stable) (push) Successful in 38s
Test / test (oldstable) (push) Successful in 1m1s
feat(goreleaser): Vastly simplify upload process (#229)
Make the upload process to Gitea packages much less of a clusterbomb

Reviewed-on: #229
2023-11-08 18:02:34 +00:00

38 lines
844 B
YAML

name: Gitea Release
on:
push:
tags:
- "*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '>=1.21'
- name: Install scdoc
run: sudo apt-get install -y scdoc
- name: Release with GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITEA_TOKEN: ${{ secrets.PUBLISH_TOKEN }}
UPLOAD_PACKAGES_USERNAME: sam
UPLOAD_PACKAGES_SECRET: ${{ secrets.PUBLISH_TOKEN }}