forked from lunarphp/lunar
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (32 loc) · 860 Bytes
/
Copy pathsplit_packages.yml
File metadata and controls
34 lines (32 loc) · 860 Bytes
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
name: monorepo-split
on:
push:
tags: '*'
jobs:
split-monorepo:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
- "admin"
- "core"
- "opayo"
- "paypal"
- "table-rate-shipping"
- "stripe"
- "search"
steps:
- uses: actions/checkout@v6
- name: Monorepo Split of ${{ matrix.package }}
uses: danharrin/monorepo-split-github-action@v2.4.0
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
with:
package_directory: "packages/${{ matrix.package }}"
repository_organization: "lunarphp"
repository_name: "${{ matrix.package }}"
branch: 1.x
tag: ${{ github.ref_name }}
user_name: "GitHub Action"
user_email: "action@github.com"