Skip to content

Store the referrer by default in backend scope (see #7227) #1120

Store the referrer by default in backend scope (see #7227)

Store the referrer by default in backend scope (see #7227) #1120

Workflow file for this run

name: Split
on:
push:
branches:
- 4.13
tags:
- 4.13.*
permissions: read-all
defaults:
run:
# Simulate an interactive terminal with color support
shell: script -q -e -c "export TERM=xterm; bash {0}"
jobs:
monorepo-split:
name: Monorepo split
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
extensions: json, zlib
coverage: none
- name: Checkout
uses: actions/checkout@v4
with:
show-progress: false
- name: Cache the monorepo split
uses: actions/cache@v4
with:
path: .monorepo-split-cache
key: dev-${GITHUB_REF##*/}
- name: Install the dependencies
run: composer global require contao/monorepo-tools:^0.2
- name: Split the monorepo
run: $HOME/.composer/vendor/bin/monorepo-tools split ${GITHUB_REF##*/} ${{ github.event.forced && '--force-push' || '' }}
env:
GITHUB_TOKEN: ${{ secrets.MONOREPO_SPLIT_TOKEN }}