Skip to content

Integrate Actions with multiarch build #46

Integrate Actions with multiarch build

Integrate Actions with multiarch build #46

Workflow file for this run

name: Create kpa-marp-pandoc container image
env:
REGISTRY_GHCR: ghcr.io/mmul-it
REGISTRY_QUAY: quay.io/mmul
CONTAINER_NAME: kpa-marp-pandoc
on: [push]
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: |
${REGISTRY_GHCR}/${CONTAINER_NAME}
${REGISTRY_QUAY}/${CONTAINER_NAME}
# ${REGISTRY_GHCR}/${CONTAINER_NAME}:latest
# ${REGISTRY_GHCR}/${CONTAINER_NAME}:${{ github.ref_name }}
# ${REGISTRY_QUAY}/${CONTAINER_NAME}:latest
# ${REGISTRY_QUAY}/${CONTAINER_NAME}:${{ github.ref_name }}
# images: mmul-it/kpa-marp-pandoc
# images: mmul-it/${CONTAINER_NAME}
# images: ${CONTAINER_NAME}:${{ github.ref_name }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Login to ghcr
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ vars.GHCR_USER }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Login to quay
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ vars.QUAY_ROBOT_NAME }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
# tags: mmul-it/${CONTAINER_NAME}:latest
tags: ${{ steps.meta.outputs.tags }}
#,mmul-it/${CONTAINER_NAME}:${{ github.ref_name }}
# labels: ${{ steps.meta.outputs.labels }}
# - name: Login to quay
# if: github.event_name != 'pull_request'
# uses: docker/login-action@v3
# with:
# registry: quay.io
# username: ${{ vars.GHCR_USER }}
# password: ${{ secrets.GHCR_TOKEN }}
#
# - name: Build and push
# uses: docker/build-push-action@v5
# with:
# context: .
# push: ${{ github.event_name != 'pull_request' }}
# tags: mmul/${CONTAINER_NAME}:latest
##,mmul/${CONTAINER_NAME}:${{ github.ref_name }}
# labels: ${{ steps.meta.outputs.labels }}