Merge pull request #93 from duboiss/featjre #40
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: "Images Split" | |
on: | |
push: | |
branches: [ "main" ] | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
jobs: | |
split: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
image: | |
- | |
local_path: "common/php-entrypoint" | |
split_repository: "docker-php-entrypoint" | |
- | |
local_path: "common/nginx" | |
split_repository: "docker-nginx" | |
- | |
local_path: "common/synchro" | |
split_repository: "docker-synchro" | |
- | |
local_path: "magento2/elasticsearch" | |
split_repository: "docker-magento2-elasticsearch" | |
- | |
local_path: "magento2/nginx" | |
split_repository: "docker-magento2-nginx" | |
- | |
local_path: "orocommerce/rabbitmq" | |
split_repository: "docker-orocommerce-rabbitmq" | |
- | |
local_path: "php" | |
split_repository: "docker-php" | |
steps: | |
- | |
uses: actions/checkout@v2 | |
- | |
uses: "symplify/[email protected]" | |
with: | |
package_directory: "${{ matrix.image.local_path }}" | |
repository_organization: "origamiphp" | |
repository_name: "${{ matrix.image.split_repository }}" | |
user_name: "Alexandre Jardin" | |
user_email: "[email protected]" |