Skip to content

Commit

Permalink
Specification d'ou trouver le zip et XML
Browse files Browse the repository at this point in the history
  • Loading branch information
AureRita committed Nov 28, 2024
1 parent 2afa40c commit 076e740
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ui-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,17 @@ 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'
if: matrix.UPGRADE_CHANNEL == 'local' || matrix.PS_VERSION_END != '9.0.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
- name: Download local ZIP and XML for local channel
if: matrix.PS_VERSION_END == '9.0.0'
run: |
docker exec -t prestashop curl --fail -L https://storage.googleapis.com/prestashop-core-nightly/2024-11-28-develop-prestashop_9.0.0.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/2024-11-28-develop-prestashop_9.0.0.xml -o admin-dev/autoupgrade/download/prestashop_${{ matrix.PS_VERSION_END }}.xml
- name: Write configuration file
run: |
docker exec -t prestashop sh -c "echo '{
Expand Down

0 comments on commit 076e740

Please sign in to comment.