You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
348 B
21 lines
348 B
---
|
|
name: default
|
|
kind: pipeline
|
|
type: docker
|
|
|
|
steps:
|
|
- name: build
|
|
image: mcr.microsoft.com/dotnet/sdk:5.0
|
|
commands:
|
|
- ./build.sh
|
|
- ./zip-files.sh
|
|
|
|
- name: release
|
|
image: plugins/gitea-release
|
|
settings:
|
|
api_key:
|
|
from_secret: gitea_token
|
|
base_url: https://git.adawesome.tech
|
|
files: builds/*.zip
|
|
when:
|
|
event: tag
|
|
|