Skip to content

chore: update drupal/core to 10.3.10 #23

chore: update drupal/core to 10.3.10

chore: update drupal/core to 10.3.10 #23

name: Build base images
on:
push:
branches:
- 'main'
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# - name: Log in to Docker Hub
# uses: docker/login-action@v2
# with:
# username: ${{ secrets.DOCKER_USERNAME }}
# password: ${{ secrets.DOCKER_PASSWORD }}
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push remote
uses: docker/bake-action@v5
with:
push: true
set: |
*.platform=linux/amd64,linux/arm64
cli.tags=ghcr.io/${{ github.repository_owner }}/drupal-base-image/cli:latest
nginx.tags=ghcr.io/${{ github.repository_owner }}/drupal-base-image/nginx:latest
php.tags=ghcr.io/${{ github.repository_owner }}/drupal-base-image/php:latest
- name: Build and push remote (tag)
if: ${{ github.ref_type == 'tag' }}
uses: docker/bake-action@v5
with:
push: true
set: |
*.platform=linux/amd64,linux/arm64
cli.tags=ghcr.io/${{ github.repository_owner }}/drupal-base-image/cli:${{ github.ref_name }}
nginx.tags=ghcr.io/${{ github.repository_owner }}/drupal-base-image/nginx:${{ github.ref_name }}
php.tags=ghcr.io/${{ github.repository_owner }}/drupal-base-image/php:${{ github.ref_name }}
- name: List images
run: docker image ls
- name: Build and push local
uses: docker/bake-action@v5
with:
load: true
set: |
*.platform=linux/amd64
cli.tags=drupal-base-cli:latest
nginx.tags=drupal-base-nginx:latest
php.tags=drupal-base-php:latest
- name: List images
run: docker image ls