Skip to content

chore: bump version to 1.2.0 in library.json and library.properties; … #8

chore: bump version to 1.2.0 in library.json and library.properties; …

chore: bump version to 1.2.0 in library.json and library.properties; … #8

Workflow file for this run

name: build-docker-images
on:
workflow_dispatch:
push:
paths:
- '.github/docker/**'
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
include:
- arch: s390x
platform: linux/s390x
base_img: s390x/ubuntu:latest
tag_suffix: s390x
- arch: arm32
platform: linux/arm/v7
base_img: arm32v7/ubuntu:latest
tag_suffix: arm32
steps:
- name: checkout
uses: actions/checkout@v6
- name: setup-qemu
uses: docker/setup-qemu-action@v4
- name: setup-docker-buildx
uses: docker/setup-buildx-action@v4
- name: login-to-ghcr
if: github.repository == 'EasyMem/easy_stack'
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: build-and-push-${{ matrix.arch }}
uses: docker/build-push-action@v6
with:
context: .github/docker
file: .github/docker/Dockerfile.test-env
platforms: ${{ matrix.platform }}
push: ${{ github.repository == 'EasyMem/easy_stack' }}
build-args: BASE_IMAGE=${{ matrix.base_img }}
tags: ghcr.io/easymem/easy_stack:${{ matrix.tag_suffix }}