forked from umineko-project/umineko-scripting
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (51 loc) · 1.69 KB
/
laravel.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
name: Laravel
on: [push]
jobs:
laravel-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Generate CN
run: |
mkdir cnout
BUILD=$(($(git rev-list --count --first-parent HEAD)+3500))
php update-manager/update-manager.php dscript "cnout/cn.txt" . cn
php update-manager/update-manager.php script cnout/cn.txt "cnout/cn.file" 9999
- name: Upload CN
uses: actions/upload-artifact@v4
with:
name: cn
path: cnout/
- name: Generate cht
run: |
mkdir chtout
BUILD=$(($(git rev-list --count --first-parent HEAD)+3500))
php update-manager/update-manager.php dscript "chtout/cht.txt" . cht
php update-manager/update-manager.php script chtout/cht.txt "chtout/cht.file" 9999
- name: Upload cht
uses: actions/upload-artifact@v4
with:
name: cht
path: chtout/
- name: Generate EN
run: |
mkdir enout
BUILD=$(($(git rev-list --count --first-parent HEAD)+3500))
php update-manager/update-manager.php dscript "enout/en.txt" . en
php update-manager/update-manager.php script enout/en.txt "enout/en.file" 9999
- name: Upload EN
uses: actions/upload-artifact@v4
with:
name: en
path: enout/
- name: Generate RU
run: |
mkdir ruout
BUILD=$(($(git rev-list --count --first-parent HEAD)+3500))
php update-manager/update-manager.php dscript "ruout/ru.txt" . ru
php update-manager/update-manager.php script ruout/ru.txt "ruout/ru.file" 9999
- name: Upload RU
uses: actions/upload-artifact@v4
with:
name: ru
path: ruout/