forked from filamentphp/filament
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (36 loc) · 1.09 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
name: monorepo-split
on:
push:
tags: '*'
jobs:
split-monorepo:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
- admin
- forms
- notifications
- spatie-laravel-media-library-plugin
- spatie-laravel-settings-plugin
- spatie-laravel-tags-plugin
- spatie-laravel-translatable-plugin
- support
- tables
steps:
- uses: actions/checkout@v2
- id: previous-tag
uses: 'WyriHaximus/github-action-get-previous-tag@master'
- name: Monorepo Split of ${{ matrix.package }}
uses: symplify/github-action-monorepo-split@02755d9ac89929afb8d5aacff142fda76075e507
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
with:
package_directory: 'packages/${{ matrix.package }}'
repository_organization: 'filamentphp'
repository_name: '${{ matrix.package }}'
branch: 2.x
tag: ${{ steps.previous-tag.outputs.tag }}
user_name: 'Dan Harrin'
user_email: '[email protected]'