Update webhook responses #65
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: | |
- '**' | |
tags: | |
- '*' | |
jobs: | |
tag_split_payments: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
package: ['opayo', 'stripe', 'paypal'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.0 | |
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: 'payment/${{ 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: 'payment/${{ 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: 'payment/${{ matrix.package }}' | |
repository_organization: 'lunarphp' | |
repository_name: '${{ matrix.package }}' | |
user_name: "GitHub Action" | |
user_email: "[email protected]" | |
branch: ${GITHUB_TAG%.*} | |
tag_split_search: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
package: ['meilisearch'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.0 | |
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: 'search/${{ 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: 'search/${{ 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: 'search/${{ matrix.package }}' | |
repository_organization: 'lunarphp' | |
repository_name: '${{ matrix.package }}' | |
user_name: "GitHub Action" | |
user_email: "[email protected]" | |
branch: ${GITHUB_TAG%.*} |