Skip to content

Regenerate containers #63

Regenerate containers

Regenerate containers #63

Workflow file for this run

name: Regenerate containers
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * 1'
jobs:
install_shop_with_module:
strategy:
matrix:
php: [ '8.0', '8.1', '8.2', '8.3', '8.4' ]
runs-on: ubuntu-latest
steps:
- name: Checkout current module
uses: actions/checkout@v4
with:
path: ./
- name: Prepare image
run: |
cd containers/php-fpm-${{ matrix.php }}-base
docker build -t siegfuse/php-fpm-base:${{ matrix.php }} .
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push image
run: |
docker push siegfuse/php-fpm-base:${{ matrix.php }}