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.
25 lines
449 B
25 lines
449 B
---
|
|
name: default
|
|
kind: pipeline
|
|
type: docker
|
|
|
|
steps:
|
|
- name: build
|
|
image: debian
|
|
commands:
|
|
- apt-get update
|
|
- apt-get upgrade -y
|
|
- apt-get install zip -y
|
|
- apt-get install g++-mingw-w64-x86-64 -y
|
|
- ./build-linux.sh
|
|
- ./build-win.sh
|
|
|
|
- name: release
|
|
image: plugins/gitea-release
|
|
settings:
|
|
api_key:
|
|
from_secret: gitea_token
|
|
base_url: https://git.adawesome.tech
|
|
files:
|
|
- modlimitfix
|
|
- modlimitfix.exe
|
|
|