70 lines
1.5 KiB
YAML
70 lines
1.5 KiB
YAML
name: Build
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
on:
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
schedule:
|
|
- cron: "0 14 * * 2" # 2pm Patch Tuesday
|
|
|
|
concurrency:
|
|
group: ${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
mariadb-build:
|
|
name: "Build"
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
version:
|
|
- latest
|
|
- 11
|
|
- 11.2
|
|
- 11.1
|
|
- 11.0
|
|
- 10
|
|
- 10.11
|
|
- "10.10"
|
|
- 10.6
|
|
- 10.5
|
|
- 10.4
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: docker/setup-qemu-action@v3
|
|
|
|
- uses: docker/setup-buildx-action@v3
|
|
|
|
- name: "Setup: Login to Docker Hub"
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: matthewbaggett
|
|
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
|
|
|
- name: "Setup: Login to GHCR"
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: matthewbaggett
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- uses: docker/build-push-action@v5
|
|
name: Build & Push
|
|
with:
|
|
platforms: ${{ env.ACT && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
|
|
pull: true
|
|
push: true
|
|
tags: |
|
|
benzine/mariadb:${{ matrix.version }}
|
|
ghcr.io/benzine-framework/mariadb:${{ matrix.version }}
|
|
build-contexts: |
|
|
mariadb:injected-version=docker-image://mariadb:${{ matrix.version }}
|