Skip to content

Attempt 4 for the robot. He really is making a mess of things #57

Attempt 4 for the robot. He really is making a mess of things

Attempt 4 for the robot. He really is making a mess of things #57

Workflow file for this run

name: Checks
on:
push:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Configure GitHub Token for Authentication
run: |
git config --global url."https://${{ secrets.GITHUB_TOKEN }}@github.com/".insteadOf "https://github.com/"
- name: Split Packages
run: php artisan kibble:split
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}