Skip to content

OpenSUSE development container image #83

OpenSUSE development container image

OpenSUSE development container image #83

Workflow file for this run

name: OpenSUSE development container image
on:
push:
paths:
- .github/workflows/dev-suse.yml
- podman/dev/suse/*
schedule:
- cron: 0 0 * * 0
workflow_dispatch:
inputs:
push_image:
description: 'Push image to ghcr.io'
required: false
type: boolean
jobs:
build_and_push:
name: Build and push OpenSUSE container image
uses: ./.github/workflows/docker.yml
secrets: inherit
with:
context: ./podman/dev/suse
image: dev/suse
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.push_image == 'true') }}