-
Notifications
You must be signed in to change notification settings - Fork 6
36 lines (28 loc) · 1.08 KB
/
ci-master-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
# The best
name: Sync Files To Main Server
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
upload:
name: Sync Files
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set Git Config
run: |
echo "${{ secrets.sftp_key }}" > key.pem
git config git-ftp.url ${{ secrets.sftp_main_url }}
git config git-ftp.user ${{ secrets.sftp_main_user }}
git config git-ftp.key key.pem
git config git-ftp.insecure "1"
echo "::add-mask::${{ secrets.sftp_main_hostname }}"
- name: Sync EntWatch Files
run: git ftp push --verbose --auto-init --syncroot "entwatch" --remote-root "game/csgo/addons/cs2fixes/configs/entwatch/maps"
- name: Sync Stripper Files
run: git ftp push --verbose --auto-init --syncroot "stripper" --remote-root "game/csgo/addons/StripperCS2/maps/"
- name: Sync Map Config Files
run: git ftp push --verbose --auto-init --syncroot "mapcfg" --remote-root "game/csgo/cfg/cs2fixes/maps/"