Skip to content

Add no longer maintained annotations and trigger image rebuild. #37

Add no longer maintained annotations and trigger image rebuild.

Add no longer maintained annotations and trigger image rebuild. #37

Workflow file for this run

name: Docker Build Tools Image (Build Only)
on:
push:
branches-ignore:
- '7.x'
jobs:
docker-build:
runs-on: ubuntu-latest
name: Build and push ${{ matrix.php-versions }} Docker image
strategy:
matrix:
php-versions: ['7.3', '7.4', '8.0']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to Quay
uses: docker/login-action@v1
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
push: false
tags: |
pantheonpublic/build-tools-ci:7.x-php${{ matrix.php-versions }}
quay.io/pantheon-public/build-tools-ci:7.x-php${{ matrix.php-versions }}
build-args: |
PHPVERSION=${{ matrix.php-versions }}