-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.drone.yml
55 lines (46 loc) · 808 Bytes
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
kind: pipeline
type: docker
name: build
concurrency:
limit: 1
steps:
- name: test and build
image: mcr.microsoft.com/dotnet/sdk:7.0-alpine
commands:
- dotnet restore
- dotnet build
- dotnet test
environment:
ConnectionStrings__Test:
from_secret: connectionstringtest
canvas__url:
from_secret: canvasurl
canvas__key:
from_secret: canvaskey
---
kind: pipeline
type: ssh
name: deployment
depends_on:
- build
server:
host:
from_secret: host
user:
from_secret: user
password:
from_secret: password
clone:
disable: true
steps:
- name: move
commands:
- cd /home/apper/projects/StudentProgress
- git checkout main
- git pull
- docker-compose up -d --build
trigger:
branch:
- main
event:
- push