Integrate Actions with multiarch build #39
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: ${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: Build and push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: | ||
- mmul-it/${CONTAINER_NAME}:latest | ||
Check failure on line 44 in .github/workflows/main.yml GitHub Actions / Create kpa-marp-pandoc container imageInvalid workflow file
|
||
- 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 }} |