Skip to content
Merged
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
2 changes: 0 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,11 @@ jobs:

- name: Coverage - Qltysh
uses: qltysh/qlty-action/coverage@v2
if: matrix.coverage
with:
token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
files: clover.xml

- name: Coverage - Codecov
if: matrix.coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
22 changes: 11 additions & 11 deletions .github/workflows/split.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@ jobs:
php-version: 8.2
tools: composer:v2

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: split-${{ hashFiles('**/composer.lock') }}
restore-keys: |
split-
# - name: Cache Composer packages
# id: composer-cache
# uses: actions/cache@v4
# with:
# path: vendor
# key: split-${{ hashFiles('**/composer.lock') }}
# restore-keys: |
# split-

- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: |
test -f composer.json && mv composer.json composer.json.save -f
composer require phug/split --no-interaction
composer require "phug/split:dev-feature/packagist-v2" --no-interaction
test -f composer.json.save && mv composer.json.save composer.json -f

- name: Split monorepository
run: vendor/bin/split update --api=https://repo.packagist.org/p2/%s.json --git-credentials=$REPOSITORY_CREDENTIALS
run: vendor/bin/split update --git-credentials=$SPLIT_REPOSITORY_CREDENTIALS
env:
REPOSITORY_CREDENTIALS: ${{ secrets.REPOSITORY_CREDENTIALS }}
SPLIT_REPOSITORY_CREDENTIALS: ${{ secrets.SPLIT_REPOSITORY_CREDENTIALS }}
Loading