Skip to content

Commit

Permalink
Require Mage_Backup and Mage_PageCache on v19's release builder (#2890)
Browse files Browse the repository at this point in the history
* Require Mage_Backup on v19

* Require Mage_PageCache on v19
  • Loading branch information
fballiano committed Jan 3, 2023
1 parent 1fd35a1 commit dc05b64
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ jobs:
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Require Mage_Backup on v19
if: startsWith(github.event.release.tag_name, 'v19')
run: composer require --no-install --prefer-dist --no-progress --ignore-platform-req=ext-* openmage/module-mage-backup

- name: Require Mage_PageCache on v19
if: startsWith(github.event.release.tag_name, 'v19')
run: composer require --no-install --prefer-dist --no-progress --ignore-platform-req=ext-* openmage/module-mage-pagecache

- name: Composer install
run: composer install --prefer-dist --no-progress --ignore-platform-req=ext-* --no-dev

Expand Down

0 comments on commit dc05b64

Please sign in to comment.