Files
pick/.gitea/workflows/release.yml
Mark 27174ba72c
Some checks failed
CI / Clippy (pull_request) Failing after 9s
CI / Typos (pull_request) Successful in 11s
CI / Check version (pull_request) Successful in 3s
CI / Build and test (pull_request) Failing after 10s
Fix build?
2025-05-04 10:49:07 -07:00

25 lines
451 B
YAML

name: Release
on:
push:
branches:
- main
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: setup go
uses: https://github.com/actions/setup-go@v4
with:
go-version: ">=1.20.1"
- uses: https://gitea.com/actions/release-action@main
with:
api_key: "${{secrets.RELEASE_TOKEN}}"