29 lines
692 B
YAML
29 lines
692 B
YAML
---
|
||
kind: pipeline
|
||
type: exec
|
||
name: default
|
||
|
||
platform:
|
||
os: linux
|
||
arch: amd64
|
||
|
||
clone:
|
||
# убрано так как сейчас не тестим ничего предварительно а сразу тянем в директорию
|
||
disable: true
|
||
|
||
steps:
|
||
- name: pull into the folduh
|
||
commands:
|
||
- cd /usr/share/$DRONE_REPO_NAME
|
||
- git pull
|
||
- name: build
|
||
commands:
|
||
- cd /usr/share/$DRONE_REPO_NAME
|
||
- dotnet build
|
||
- name: mv
|
||
commands:
|
||
- mkdir -p /usr/share/$DRONE_REPO_NAME/dist
|
||
- mv /usr/share/$DRONE_REPO_NAME/bin/Debug/net6.0/* /usr/share/$DRONE_REPO_NAME/dist
|
||
- name: cleanup
|
||
commands:
|
||
- rm -rf /usr/share/$DRONE_REPO_NAME/bin /usr/share/$DRONE_REPO_NAME/obj |