Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: try to split main repository into sub repositories #477

Open
wants to merge 1 commit into
base: v2-unstable
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 0 additions & 82 deletions .github/workflows/build.yaml

This file was deleted.

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

on:
push:
branches:
- 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/}"