-
Notifications
You must be signed in to change notification settings - Fork 149
85 lines (71 loc) · 2.15 KB
/
main.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: Publish
concurrency:
group: publish
on:
workflow_dispatch:
schedule:
- cron: '0 1 * * *'
jobs:
build:
name: deploy to staging
runs-on: ubuntu-latest
steps:
- name: check if need to update
uses: appleboy/ssh-action@master
with:
host: cdn.backmen.ru
username: root
key: ${{ secrets.BACKMEN_BUILDS_PUSH_KEY }}
script: |
if [ -d "/opt/builds/${{ github.sha }}" ]
then
echo "Directory /opt/builds/${{ github.sha }} exists."
throw "Error: Directory /opt/builds/${{ github.sha }} exists."
fi
- name: Install dependencies
run: sudo apt-get install -y python3-paramiko
- uses: actions/[email protected]
with:
submodules: 'recursive'
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.0.x
- name: Get Engine Tag
run: |
cd RobustToolbox
git fetch --depth=1
- name: Package all
run: |
Tools/package_server_build.py -p win-x64 linux-x64
Tools/package_client_build.py
- name: Update Build Info
run: Tools/gen_build_info.py
- name: Shuffle files around
run: |
mkdir "release/${{ github.sha }}"
mv release/*.zip "release/${{ github.sha }}"
- name: Upload files to backmen
uses: appleboy/scp-action@master
with:
host: cdn.backmen.ru
username: root
key: ${{ secrets.BACKMEN_BUILDS_PUSH_KEY }}
source: "release/${{ github.sha }}"
target: "/opt/builds/"
strip_components: 1
tar_tmp_path: "/tmp/"
- name: Update cdn
uses: appleboy/ssh-action@master
with:
host: cdn.backmen.ru
username: root
key: ${{ secrets.BACKMEN_BUILDS_PUSH_KEY }}
script: "curl -X POST -d \"\" -H 'Authorization: Bearer ${{ secrets.CDN_TOKEN }}' http://localhost:5001/control/update"
- name: Update manifest JSON
uses: appleboy/ssh-action@master
with:
host: cdn.backmen.ru
username: root
key: ${{ secrets.BACKMEN_BUILDS_PUSH_KEY }}
script: "python3 /opt/push.py"