Cron docker build #623
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
# This tests the build for development | |
name: Cron docker build | |
on: | |
schedule: | |
- cron: '0 1 * * *' | |
jobs: | |
docker-build: | |
name: Docker build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: | |
- 8.1 | |
base: | |
- apache | |
- fpm | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Running latest prestashop with docker | |
run: docker compose build --build-arg VERSION=${{ matrix.version }}-${{ matrix.base }} |