-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (48 loc) · 1.6 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
name: "split"
on:
push:
branches:
- main
tags:
- "*"
jobs:
packages_split:
runs-on: ubuntu-latest
environment: "actions"
env:
GITHUB_TOKEN: ${{ secrets.SPLIT_ACCESS_TOKEN }}
strategy:
fail-fast: false
matrix:
package:
- local_path: "appengine-client"
split_repository: "sky-api.appengine-client"
- local_path: "oauth2"
split_repository: "OAuth2-BlackbaudSKY"
- local_path: "oauth2-example"
split_repository: "OAuth2-BlackbaudSKY-example"
- local_path: "oneroster"
split_repository: "sky-api.oneroster"
- local_path: "school"
split_repository: "sky-api.school"
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: "groton-school"
repository_name: "${{ matrix.package.split_repository }}"
user_name: "battis"
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: "groton-school"
repository_name: "${{ matrix.package.split_repository }}"
user_name: "battis"
user_email: "[email protected]"