web-ci/.github/workflows/build.yml
brooke 0b4585947d
Some checks failed
Build And Publish Docker / build (1.22.3, 0.126.3, 22.2.0) (push) Failing after 1m51s
swap entrypoint, swap runner container
2024-06-04 21:59:21 -04:00

54 lines
1.5 KiB
YAML

name: Build And Publish Docker
on:
push:
branches:
- "alpine"
jobs:
build:
runs-on: debian-bookworm
strategy:
matrix:
hugo-version: ["0.126.3"]
node-version: ["22.2.0"]
go-version: ["1.22.3"]
steps:
- uses: actions/checkout@v3
- name: Install deps
run: curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
- name: Login to Self-Hosted Registry
uses: docker/login-action@v2
with:
registry: git.myco.systems
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Build and Push Extended Version
uses: docker/build-push-action@v4
with:
builder: ${{ steps.buildx.outputs.name }}
context: ./
file: ./Dockerfile
platforms: linux/amd64
push: true
build-args: |
HUGO_VERSION=${{ matrix.hugo-version }}
NODE_VERSION=${{ matrix.node-version }}
GO_VERSION=${{ matrix.go-version }}
tags: |
git.myco.systems/mycosystems/hugo-ci:extended-alpine-${{ matrix.hugo-version }}-${{ matrix.node-version }}-${{ matrix.go-version }}
git.myco.systems/mycosystems/hugo-ci:extended-alpine-latest