generated from Templates/Baseline
OCram85
cb115635ed
#### 📖 Summary - testing Gitea Actions to create an new release when pushing a tag #### 📑 Test Plan > 💡 Select your test plan for the code changes. - [x] CI pipeline tests - [ ] Custom test - [ ] No test plan ##### Details / Justification <!-- Add your test details or justification for missing tests here. --> #### 📚 Additional Notes <!-- A place for additional detail notes. --> Co-authored-by: OCram85 <marco.blessing@googlemail.com> Reviewed-on: #7
23 lines
386 B
YAML
23 lines
386 B
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Use Go Action
|
|
id: use-go-action
|
|
uses: actions/release-action@main
|
|
with:
|
|
#files: -|
|
|
api_key: '${{ secrets.TOKEN }}'
|
|
#title:
|
|
#body:
|