Skip to content

Make images

Make images #56

Workflow file for this run

name: Make images
on:
schedule:
- cron: "0 0 * * 1"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: 'Build and push images'
steps:
- name: "DockerHub login"
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: "Branch checkout"
uses: actions/checkout@v3
- name: "Build and Push Docker Images"
env:
PHP_VERSIONS: ${{ vars.PHP_VERSIONS }}
LATEST_VERSION: ${{ vars.LATEST_VERSION }}
REPOSITORY_NAME: ${{ vars.REPOSITORY_NAME }}
run: |
make all