forked from baserproject/basercms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '5.1.x' into good-password
# Conflicts: # plugins/bc-admin-third/webroot/css/admin/style.css
- Loading branch information
Showing
401 changed files
with
11,774 additions
and
5,494 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,95 +1,95 @@ | ||
name: 'Packages Split' | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- '*' | ||
push: | ||
branches: | ||
- 5.0.x | ||
- 5.1.x | ||
tags: | ||
- '*' | ||
jobs: | ||
packages_split: | ||
runs-on: ubuntu-latest | ||
environment: develop | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
package: | ||
- | ||
local_path: 'baser-core' | ||
split_repository: 'baser-core' | ||
- | ||
local_path: 'bc-admin-third' | ||
split_repository: 'bc-admin-third' | ||
- | ||
local_path: 'bc-blog' | ||
split_repository: 'bc-blog' | ||
- | ||
local_path: 'BcColumn' | ||
split_repository: 'bc-column' | ||
- | ||
local_path: 'bc-content-link' | ||
split_repository: 'bc-content-link' | ||
- | ||
local_path: 'bc-custom-content' | ||
split_repository: 'bc-custom-content' | ||
- | ||
local_path: 'bc-editor-template' | ||
split_repository: 'bc-editor-template' | ||
- | ||
local_path: 'bc-favorite' | ||
split_repository: 'bc-favorite' | ||
- | ||
local_path: 'bc-front' | ||
split_repository: 'bc-front' | ||
- | ||
local_path: 'bc-installer' | ||
split_repository: 'bc-installer' | ||
- | ||
local_path: 'bc-mail' | ||
split_repository: 'bc-mail' | ||
- | ||
local_path: 'bc-search-index' | ||
split_repository: 'bc-search-index' | ||
- | ||
local_path: 'bc-theme-config' | ||
split_repository: 'bc-theme-config' | ||
- | ||
local_path: 'bc-theme-file' | ||
split_repository: 'bc-theme-file' | ||
- | ||
local_path: 'bc-uploader' | ||
split_repository: 'bc-uploader' | ||
- | ||
local_path: 'bc-widget-area' | ||
split_repository: 'bc-widget-area' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
# no tag | ||
- | ||
if: "!startsWith(github.ref, 'refs/tags/')" | ||
name: Monorepo Split of ${{ matrix.package }} | ||
uses: "symplify/[email protected]" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
with: | ||
package_directory: 'plugins/${{ matrix.package.local_path }}' | ||
repository_organization: 'baserproject' | ||
repository_name: '${{ matrix.package.split_repository }}' | ||
branch: "master" | ||
user_name: "ryuring" | ||
user_email: "[email protected]" | ||
# with tag | ||
- | ||
if: "startsWith(github.ref, 'refs/tags/')" | ||
name: Monorepo Tagged Split of ${{ matrix.package }} | ||
uses: "symplify/[email protected]" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
with: | ||
tag: ${GITHUB_REF#refs/tags/} | ||
package_directory: 'plugins/${{ matrix.package.local_path }}' | ||
repository_organization: 'baserproject' | ||
repository_name: '${{ matrix.package.split_repository }}' | ||
branch: "master" | ||
user_name: "ryuring" | ||
user_email: "[email protected]" | ||
packages_split: | ||
runs-on: ubuntu-latest | ||
environment: develop | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
package: | ||
- local_path: 'baser-core' | ||
split_repository: 'baser-core' | ||
- local_path: 'bc-admin-third' | ||
split_repository: 'bc-admin-third' | ||
- local_path: 'bc-blog' | ||
split_repository: 'bc-blog' | ||
- local_path: 'BcColumn' | ||
split_repository: 'bc-column' | ||
- local_path: 'bc-content-link' | ||
split_repository: 'bc-content-link' | ||
- local_path: 'bc-custom-content' | ||
split_repository: 'bc-custom-content' | ||
- local_path: 'bc-editor-template' | ||
split_repository: 'bc-editor-template' | ||
- local_path: 'bc-favorite' | ||
split_repository: 'bc-favorite' | ||
- local_path: 'bc-front' | ||
split_repository: 'bc-front' | ||
- local_path: 'bc-installer' | ||
split_repository: 'bc-installer' | ||
- local_path: 'bc-mail' | ||
split_repository: 'bc-mail' | ||
- local_path: 'bc-search-index' | ||
split_repository: 'bc-search-index' | ||
- local_path: 'bc-theme-config' | ||
split_repository: 'bc-theme-config' | ||
- local_path: 'bc-theme-file' | ||
split_repository: 'bc-theme-file' | ||
- local_path: 'bc-uploader' | ||
split_repository: 'bc-uploader' | ||
- local_path: 'bc-widget-area' | ||
split_repository: 'bc-widget-area' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Monorepo Tagged Split Stable | ||
# タグと安定版のブランチを分割する | ||
if: startsWith(github.ref, 'refs/tags/') && !contains(github.ref, '-') | ||
uses: symplify/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
with: | ||
tag: ${GITHUB_REF#refs/tags/} | ||
package_directory: 'plugins/${{ matrix.package.local_path }}' | ||
repository_organization: 'baserproject' | ||
repository_name: '${{ matrix.package.split_repository }}' | ||
branch: "master" | ||
user_name: "ryuring" | ||
user_email: "[email protected]" | ||
|
||
- name: Monorepo Tagged Split Alpha or Beta or Rc | ||
# タグと開発版のブランチを分割する | ||
if: startsWith(github.ref, 'refs/tags/') && contains(github.ref, '-') | ||
uses: symplify/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
with: | ||
tag: ${GITHUB_REF#refs/tags/} | ||
package_directory: 'plugins/${{ matrix.package.local_path }}' | ||
repository_organization: 'baserproject' | ||
repository_name: '${{ matrix.package.split_repository }}' | ||
branch: "dev-5" | ||
user_name: "ryuring" | ||
user_email: "[email protected]" | ||
|
||
- name: Monorepo Split Develop | ||
# 開発版のブランチのみを分割する | ||
if: "!startsWith(github.ref, 'refs/tags/')" | ||
uses: symplify/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
with: | ||
package_directory: 'plugins/${{ matrix.package.local_path }}' | ||
repository_organization: 'baserproject' | ||
repository_name: '${{ matrix.package.split_repository }}' | ||
branch: ${{ github.ref_name }} | ||
user_name: "ryuring" | ||
user_email: "[email protected]" |
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
Oops, something went wrong.