-
Notifications
You must be signed in to change notification settings - Fork 1
84 lines (77 loc) · 2.77 KB
/
split.yaml
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
name: Split Test
on:
push:
branches:
- master
tags:
- '*'
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
jobs:
packages_split:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
-
local_path: 'Cache'
split_repository: 'cache'
-
local_path: 'Collection'
split_repository: 'collection'
-
local_path: 'Console'
split_repository: 'console'
-
local_path: 'Container'
split_repository: 'container'
-
local_path: 'Cron'
split_repository: 'cron'
-
local_path: 'Database'
split_repository: 'database'
-
local_path: 'File'
split_repository: 'file'
-
local_path: 'Http'
split_repository: 'http'
-
local_path: 'Macroable'
split_repository: 'macroable'
-
local_path: 'Router'
split_repository: 'router'
-
local_path: 'Security'
split_repository: 'security'
-
local_path: 'Support'
split_repository: 'support'
-
local_path: 'Template'
split_repository: 'template'
-
local_path: 'Text'
split_repository: 'text'
-
local_path: 'Time'
split_repository: 'time'
-
local_path: 'View'
split_repository: 'view'
steps:
- uses: actions/checkout@v3
-
if: startsWith(github.ref, 'refs/tags/')
uses: "symplify/[email protected]"
with:
tag: ${GITHUB_REF#refs/tags/}
package_directory: 'src/System/${{ matrix.package.local_path }}'
repository_organization: 'SonyPradana'
repository_name: '${{ matrix.package.split_repository }}'
branch: "master"
user_name: "SonyPradana"
user_email: "[email protected]"