15 lines
426 B
YAML
15 lines
426 B
YAML
|
name: Build Container Images
|
||
|
inputs:
|
||
|
service-definition:
|
||
|
description: Path to the Spud service definition to use.
|
||
|
default: ./service.yml
|
||
|
runs:
|
||
|
using: composite
|
||
|
steps:
|
||
|
- name: Setup Spud
|
||
|
uses: https://forge.karnov.club/spadinastan/setup-spud-action@feat/install-spud-in-env
|
||
|
- name: Build images
|
||
|
run: |
|
||
|
spud build -d ${{ inputs.service-definition }}
|
||
|
podman image ls
|