-
-
Notifications
You must be signed in to change notification settings - Fork 118
128 lines (116 loc) · 4.14 KB
/
update-samples.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
name: Update Samples
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set name
run: git config --global user.name "Robbot"
- name: Set email
run: git config --global user.email "[email protected]"
- name: Clone Samples
run: git clone https://github.com/Kode/Kinc-Samples.git
- name: Get Kinc-Submodule
working-directory: Kinc-Samples
run: git submodule update --init --remote Kinc
- name: Checkout Kinc
working-directory: Kinc-Samples/Kinc
run: git checkout main
- name: Add Kinc
working-directory: Kinc-Samples
run: git add Kinc
- name: Commit
working-directory: Kinc-Samples
run: git commit -m "Update Kinc"
- name: Push
working-directory: Kinc-Samples
run: git push https://Kode-Robbot:[email protected]/Kode/Kinc-Samples.git
env:
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}
- name: Clone Switch Samples
run: git clone https://Kode-Robbot:[email protected]/Kode/Kinc-Samples-Switch.git
env:
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}
- name: Get Kinc-Submodule
working-directory: Kinc-Samples-Switch
run: git submodule update --init --remote Kinc
- name: Checkout Kinc
working-directory: Kinc-Samples-Switch/Kinc
run: git checkout main
- name: Add Kinc
working-directory: Kinc-Samples-Switch
run: git add Kinc
- name: Commit
working-directory: Kinc-Samples-Switch
run: git commit -m "Update Kinc"
- name: Push
working-directory: Kinc-Samples-Switch
run: git push https://Kode-Robbot:[email protected]/Kode/Kinc-Samples-Switch.git
env:
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}
- name: Clone PS4 Samples
run: git clone https://Kode-Robbot:[email protected]/Kode/Kinc-Samples-PS4.git
env:
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}
- name: Get Kinc-Submodule
working-directory: Kinc-Samples-PS4
run: git submodule update --init --remote Kinc
- name: Checkout Kinc
working-directory: Kinc-Samples-PS4/Kinc
run: git checkout main
- name: Add Kinc
working-directory: Kinc-Samples-PS4
run: git add Kinc
- name: Commit
working-directory: Kinc-Samples-PS4
run: git commit -m "Update Kinc"
- name: Push
working-directory: Kinc-Samples-PS4
run: git push https://Kode-Robbot:[email protected]/Kode/Kinc-Samples-PS4.git
env:
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}
- name: Clone PS5 Samples
run: git clone https://Kode-Robbot:[email protected]/Kode/Kinc-Samples-PS5.git
env:
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}
- name: Get Kinc-Submodule
working-directory: Kinc-Samples-PS5
run: git submodule update --init --remote Kinc
- name: Checkout Kinc
working-directory: Kinc-Samples-PS5/Kinc
run: git checkout main
- name: Add Kinc
working-directory: Kinc-Samples-PS5
run: git add Kinc
- name: Commit
working-directory: Kinc-Samples-PS5
run: git commit -m "Update Kinc"
- name: Push
working-directory: Kinc-Samples-PS5
run: git push https://Kode-Robbot:[email protected]/Kode/Kinc-Samples-PS5.git
env:
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}
- name: Clone Xbox Samples
run: git clone https://Kode-Robbot:[email protected]/Kode/Kinc-Samples-Xbox.git
env:
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}
- name: Get Kinc-Submodule
working-directory: Kinc-Samples-Xbox
run: git submodule update --init --remote Kinc
- name: Checkout Kinc
working-directory: Kinc-Samples-Xbox/Kinc
run: git checkout main
- name: Add Kinc
working-directory: Kinc-Samples-Xbox
run: git add Kinc
- name: Commit
working-directory: Kinc-Samples-Xbox
run: git commit -m "Update Kinc"
- name: Push
working-directory: Kinc-Samples-Xbox
run: git push https://Kode-Robbot:[email protected]/Kode/Kinc-Samples-Xbox.git
env:
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}