Merge branch 'review' #163
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 | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v[0-9]*" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
split: | |
name: Update read-only subtree split repositories | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Install libgit2 | |
run: | | |
sudo apt-get update | |
sudo apt-get install libgit2-dev | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.SPLIT_COMMITTER_TOKEN }} | |
- name: Install splitsh-lite | |
run: | | |
install -Dm755 -v tools/splitsh-lite /usr/local/bin/splitsh-lite | |
- name: Run split.sh | |
run: scripts/split.sh ${{ github.ref_name }} |