feat: update model attributes and factory (#303) #109
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: monorepo-split | |
on: | |
push: | |
branches: | |
- '*.x' | |
tags: '*' | |
jobs: | |
split-monorepo: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
package: | |
- admin | |
- core | |
- sidebar | |
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.ACCESS_TOKEN }} | |
with: | |
package_directory: 'packages/${{ matrix.package }}' | |
repository_organization: 'shopperlabs' | |
repository_name: '${{ matrix.package }}' | |
branch: 2.x | |
tag: ${{ steps.previous-tag.outputs.tag }} | |
user_name: 'Arthur Monney' | |
user_email: '[email protected]' |