Skip to content

Commit

Permalink
ci: try to split main repository into sub repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroTroller committed Jun 23, 2023
1 parent 857cad1 commit d8a36b7
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 82 deletions.
2 changes: 2 additions & 0 deletions .gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[safe]
directory = "*"
82 changes: 0 additions & 82 deletions .github/workflows/build.yaml

This file was deleted.

75 changes: 75 additions & 0 deletions .github/workflows/split.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
---
name: 'Packages Split'

on:
push:
branches:
- v2-unstable-*
- v2-unstable # Remove before releasing v2
- master
tags:
- '*'

env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}

concurrency:
group: "Packages Split"
cancel-in-progress: false

jobs:
split:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
- remote: 'knplabs/snappy-core'
path: 'src/Core'
- remote: 'knplabs/snappy-bundle'
path: 'src/Bundle'
- remote: 'knplabs/snappy-wkhtmltopdf'
path: 'src/Backend/WkHtmlToPdf'
steps:
- run: |
git config --global user.name "knpEdgar"
git config --global user.email "[email protected]"
- uses: actions/checkout@v2
with:
path: ./monolyth
- run: mkdir ./readonly
- run: mkdir ./build
- name: git clone
run: |
cd ./readonly
git clone -- https://${{ secrets.ACCESS_TOKEN }}@github.com/${{ matrix.package.remote }} .
git fetch
- name: cleanup
run: cp --verbose -ra ./readonly/.git ./build/.git
- run: cp --verbose -ra ./monolyth/${{ matrix.package.path }}/* ./build
- run: ls -la ./build
- name: git add .
id: git_status
run: |
cd ./build
git status --porcelain
echo "STATUS=$(git status --porcelain)" >> $GITHUB_OUTPUT
git add . --verbose
- name: git commit
if: ${{ '' != steps.git_status.outputs.STATUS }}
run: |
cd ./monolyth
COMMIT_MESSAGE=$(git show -s --format=%B ${GITHUB_SHA})
cd ../build
git commit --message "$COMMIT_MESSAGE"
- name: git push
if: ${{ '' != steps.git_status.outputs.STATUS }}
run: |
cd ./build
git push --quiet origin main
- name: git tag
if: "startsWith(github.ref, 'refs/tags/')"
run: |
cd ./build
git tag %s -m "${GITHUB_REF#refs/tags/}"
git push --quiet origin "${GITHUB_REF#refs/tags/}"
1 change: 1 addition & 0 deletions src/Core/FileToPdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@

interface FileToPdf
{

public function generateFromFile(\SplFileInfo $file, \ArrayAccess|array $options = []): StreamInterface;
}

0 comments on commit d8a36b7

Please sign in to comment.