Skip to content

Fix Microsoft JWT validation during Azure key rotation (refresh JWKS … #695

Fix Microsoft JWT validation during Azure key rotation (refresh JWKS …

Fix Microsoft JWT validation during Azure key rotation (refresh JWKS … #695

name: Split providers into their individual repos
on:
push:
branches:
- master
jobs:
split:
name: Split Providers
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.5'
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Create repos for new providers
run: php tools/create-repos.php "${{ github.sha }}" "${{ github.repository }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_PUSH_TOKEN }}
- name: Install splitsh-lite
run: |
mkdir -p /tmp/splitsh
wget -qO /tmp/splitsh/splitsh-lite.tar.gz https://github.com/splitsh/lite/releases/download/v1.0.1/lite_linux_amd64.tar.gz
tar -zxf /tmp/splitsh/splitsh-lite.tar.gz -C /tmp/splitsh
sudo mv /tmp/splitsh/splitsh-lite /usr/local/bin/splitsh-lite
- name: Split packages
run: ./tools/split.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_PUSH_TOKEN }}
MAX_PARALLEL: '8'