forked from filamentphp/filament
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (42 loc) · 1.23 KB
/
monorepo-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
name: monorepo-split
on:
push:
tags: '*'
jobs:
split-monorepo:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
- actions
- forms
- infolists
- notifications
- panels
- spark-billing-provider
- spatie-laravel-google-fonts-plugin
- spatie-laravel-media-library-plugin
- spatie-laravel-settings-plugin
- spatie-laravel-tags-plugin
- spatie-laravel-translatable-plugin
- support
- tables
- widgets
- upgrade
steps:
- uses: actions/checkout@v3
- id: previous-tag
uses: 'WyriHaximus/github-action-get-previous-tag@master'
- name: Monorepo Split of ${{ matrix.package }}
uses: danharrin/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
with:
package_directory: 'packages/${{ matrix.package }}'
repository_organization: 'filamentphp'
repository_name: '${{ matrix.package }}'
branch: 3.x
tag: ${{ steps.previous-tag.outputs.tag }}
user_name: 'Dan Harrin'
user_email: '[email protected]'