-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
101 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@moderntribe/sitebuilder": patch | ||
"@moderntribe/wme-sitebuilder": patch | ||
--- | ||
|
||
Add purchase domain icon to setup screen card |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: 'Split Composer Packages' | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- 1.0-branch | ||
- 2.0-branch | ||
tags: | ||
- '*' | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.SPLIT_ACCESS_TOKEN }} | ||
|
||
jobs: | ||
packages_split: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# define package to repository map | ||
package: | ||
- | ||
local_path: 'plugins/wme-sitebuilder' | ||
split_repository: 'wme-sitebuilder' | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
# no tag | ||
- | ||
if: "!startsWith(github.ref, 'refs/tags/')" | ||
uses: "symplify/[email protected]" | ||
with: | ||
# ↓ split "plugins/wme-sitebuilder" directory | ||
package_directory: '${{ matrix.package.local_path }}' | ||
|
||
# ↓ into https://github.com/moderntribe/wme-sitebuilder repository | ||
repository_organization: 'moderntribe' | ||
repository_name: '${{ matrix.package.split_repository }}' | ||
|
||
# ↓ the user signed under the split commit | ||
user_name: "bswatson" | ||
user_email: "[email protected]" | ||
|
||
# with tag | ||
- | ||
if: "startsWith(github.ref, 'refs/tags/')" | ||
uses: "symplify/[email protected]" | ||
with: | ||
tag: ${GITHUB_REF#refs/tags/} | ||
|
||
# ↓ split "plugins/wme-sitebuilder" directory | ||
package_directory: '${{ matrix.package.local_path }}' | ||
|
||
# ↓ into https://github.com/moderntribe/wme-sitebuilder repository | ||
repository_organization: 'moderntribe' | ||
repository_name: '${{ matrix.package.split_repository }}' | ||
|
||
# ↓ the user signed under the split commit | ||
user_name: "bswatson" | ||
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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