Files
pick/.gitea/workflows/release.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 18: mapping key "uses" already defined at line 13 line 19: mapping key "with" already defined at line 14
Mark 6c61ef10b2
Some checks failed
CI / Typos (push) Successful in 10s
CI / Clippy (push) Successful in 50s
CI / Check version (push) Failing after 3s
CI / Build and test (push) Successful in 55s
Fix release (#2)
2025-05-04 10:32:55 -07:00

20 lines
352 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
id: use-go-action
uses: https://gitea.com/actions/release-action@main
with:
api_key: '${{secrets.RELEASE_TOKEN}}'