.github/workflows/setup-lastest-zip.yml #127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
push: | |
schedule: | |
- cron: | |
'0 1 * * *' | |
jobs: | |
setup-shopware: | |
name: Setup Shopware | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
versions: | |
- shopware: '5.7' | |
php: '7.4' | |
mysql: '8.0' | |
consentManager: 'none' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: current | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ github.token }} | |
- name: Install dependencies | |
run: npm install | |
- name: Create base image | |
run: make running:shopware_${{ matrix.versions.shopware }}_${{ matrix.versions.mysql }}_${{ matrix.versions.php }} | |
- name: Push base image | |
if: ${{ github.ref == 'refs/heads/main' }} | |
run: docker push ghcr.io/shopware5/docker-images-testing/running:shopware_${{ matrix.versions.shopware }}_${{ matrix.versions.mysql }}_${{ matrix.versions.php }} | |
- name: Download latest Shopware | |
id: download-artifact | |
uses: dawidd6/action-download-artifact@v3 | |
with: | |
github_token: ${{secrets.GITHUB_TOKEN}} | |
workflow: create-release.yml | |
workflow_conclusion: success | |
branch: 5.7 | |
repo: shopware5/shopware | |
- name: Unzip artifacts | |
run: | | |
cd artifact && mv install*.zip ../shopware.zip | |
- name: Create lastest Image | |
run: make latest:shopware_${{ matrix.versions.shopware }}_${{ matrix.versions.mysql }}_${{ matrix.versions.php }}_${{ matrix.versions.consentManager }} | |
- name: Test zip Image | |
run: make test-latest:shopware_${{ matrix.versions.shopware }}_${{ matrix.versions.mysql }}_${{ matrix.versions.php }}_${{ matrix.versions.consentManager }} | |
- name: Push zip Image | |
if: ${{ github.ref == 'refs/heads/main' }} | |
run: docker push ghcr.io/shopware5/docker-images-testing/latest:shopware_${{ matrix.versions.shopware }}_${{ matrix.versions.mysql }}_${{ matrix.versions.php }}_${{ matrix.versions.consentManager }} |