Fix Rule unique slug url use morph class (#1983) #1265
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: Split Packages | |
on: | |
push: | |
branches: | |
- main | |
- "0.*" | |
- "1.*" | |
tags: | |
- "*" | |
jobs: | |
tag_split_packages: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
package: ["admin", "core", "opayo", "paypal", "table-rate-shipping", "stripe", "meilisearch"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
coverage: none | |
- name: Split ${{ matrix.package }} | |
uses: "danharrin/[email protected]" | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
with: | |
package_directory: "packages/${{ matrix.package }}" | |
repository_organization: "lunarphp" | |
repository_name: "${{ matrix.package }}" | |
user_name: "GitHub Action" | |
user_email: "[email protected]" | |
branch: ${GITHUB_REF#refs/heads/} | |
- name: Set env | |
if: "startsWith(github.ref, 'refs/tags/')" | |
run: echo "GITHUB_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | |
- name: Split ${{ matrix.package }} | |
uses: "danharrin/[email protected]" | |
if: "startsWith(github.ref, 'refs/tags/')" | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
with: | |
package_directory: "packages/${{ matrix.package }}" | |
repository_organization: "lunarphp" | |
repository_name: "${{ matrix.package }}" | |
user_name: "GitHub Action" | |
user_email: "[email protected]" | |
branch: ${GITHUB_TAG%.*} | |
- name: Tag ${{ matrix.package }} | |
if: "startsWith(github.ref, 'refs/tags/')" | |
uses: "danharrin/[email protected]" | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
with: | |
tag: ${GITHUB_REF#refs/tags/} | |
package_directory: "packages/${{ matrix.package }}" | |
repository_organization: "lunarphp" | |
repository_name: "${{ matrix.package }}" | |
user_name: "GitHub Action" | |
user_email: "[email protected]" | |
branch: ${GITHUB_TAG%.*} |