-
-
Notifications
You must be signed in to change notification settings - Fork 1
105 lines (91 loc) · 3.76 KB
/
split.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
name: 'Packages Split'
on:
push:
branches:
- main
tags:
- '*'
workflow_dispatch:
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
jobs:
packages_split:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# define package to repository map
package:
-
local_path: 'file'
split_repository: 'file'
-
local_path: 'file-association'
split_repository: 'file-association'
-
local_path: 'file-association-contracts'
split_repository: 'file-association-contracts'
-
local_path: 'file-association-entity'
split_repository: 'file-association-entity'
-
local_path: 'file-bundle'
split_repository: 'file-bundle'
-
local_path: 'file-contracts'
split_repository: 'file-contracts'
-
local_path: 'file-derivation'
split_repository: 'file-derivation'
-
local_path: 'file-filepond'
split_repository: 'file-filepond'
-
local_path: 'file-image'
split_repository: 'file-image'
-
local_path: 'file-metadata'
split_repository: 'file-metadata'
-
local_path: 'file-metadata-contracts'
split_repository: 'file-metadata-contracts'
-
local_path: 'file-null'
split_repository: 'file-null'
-
local_path: 'file-oneup-uploader-bridge'
split_repository: 'file-oneup-uploader-bridge'
-
local_path: 'file-server'
split_repository: 'file-server'
-
local_path: 'file-symfony-bridge'
split_repository: 'file-symfony-bridge'
-
local_path: 'file-zip'
split_repository: 'file-zip'
steps:
- uses: actions/checkout@v2
# no tag
-
if: "!startsWith(github.ref, 'refs/tags/')"
uses: "danharrin/[email protected]"
with:
package_directory: 'packages/${{ matrix.package.local_path }}'
repository_organization: 'rekalogika'
repository_name: '${{ matrix.package.split_repository }}'
repository_host: github.com
user_name: "Priyadi Iman Nurcahyo"
user_email: "[email protected]"
# with tag
-
if: "startsWith(github.ref, 'refs/tags/')"
uses: "danharrin/[email protected]"
with:
tag: ${GITHUB_REF#refs/tags/}
package_directory: 'packages/${{ matrix.package.local_path }}'
repository_organization: 'rekalogika'
repository_name: '${{ matrix.package.split_repository }}'
repository_host: github.com
user_name: "Priyadi Iman Nurcahyo"
user_email: "[email protected]"