diff --git a/.github/workflows/ui-test.yml b/.github/workflows/ui-test.yml index 68ae70d92..58ed7e2d9 100644 --- a/.github/workflows/ui-test.yml +++ b/.github/workflows/ui-test.yml @@ -67,7 +67,7 @@ jobs: docker exec -t prestashop php modules/autoupgrade/bin/console backup:create admin-dev - name: Download local ZIP and XML for local channel - if: matrix.UPGRADE_CHANNEL == 'local' && matrix.PS_VERSION_END != '9.0.0' + if: matrix.UPGRADE_CHANNEL == 'local' && matrix.PS_VERSION_END != '9.0.0' && matrix.PS_VERSION_END != '9.1.0' run: | docker exec -t prestashop curl --fail -L https://github.com/PrestaShop/zip-archives/raw/main/prestashop_${{ matrix.PS_VERSION_END }}.zip -o admin-dev/autoupgrade/download/prestashop_${{ matrix.PS_VERSION_END }}.zip docker exec -t prestashop curl --fail -L https://api.prestashop.com/xml/md5/${{ matrix.PS_VERSION_END }}.xml -o admin-dev/autoupgrade/download/prestashop_${{ matrix.PS_VERSION_END }}.xml @@ -78,6 +78,12 @@ jobs: docker exec -t prestashop curl --fail -L https://storage.googleapis.com/prestashop-core-nightly/nightly_9.0.x.zip -o admin-dev/autoupgrade/download/prestashop_${{ matrix.PS_VERSION_END }}.zip docker exec -t prestashop curl --fail -L https://storage.googleapis.com/prestashop-core-nightly/nightly_9.0.x.xml -o admin-dev/autoupgrade/download/prestashop_${{ matrix.PS_VERSION_END }}.xml + - name: Download local ZIP and XML for local channel in 9.1.0 + if: matrix.PS_VERSION_END == '9.1.0' + run: | + docker exec -t prestashop curl --fail -L https://storage.googleapis.com/prestashop-core-nightly/nightly.zip -o admin-dev/autoupgrade/download/prestashop_${{ matrix.PS_VERSION_END }}.zip + docker exec -t prestashop curl --fail -L https://storage.googleapis.com/prestashop-core-nightly/nightly.xml -o admin-dev/autoupgrade/download/prestashop_${{ matrix.PS_VERSION_END }}.xml + - name: Write configuration file run: | docker exec -t prestashop sh -c "echo '{ diff --git a/.github/workflows/ui-test/sanity.json b/.github/workflows/ui-test/sanity.json index 1b45407b8..c01896ed0 100644 --- a/.github/workflows/ui-test/sanity.json +++ b/.github/workflows/ui-test/sanity.json @@ -107,6 +107,12 @@ "PS_VERSION_END": "9.0.0", "PHP_VERSION": "8.1", "UPGRADE_CHANNEL": "local" + }, + { + "PS_VERSION_START": "8.1.7", + "PS_VERSION_END": "9.1.0", + "PHP_VERSION": "8.1", + "UPGRADE_CHANNEL": "local" } ] }