feat: initial push

This commit is contained in:
Marc 2024-11-07 22:31:44 -05:00
commit cf505f2d0d
Signed by: marc
GPG key ID: 048E042F22B5DC79
2 changed files with 26 additions and 0 deletions

12
README.md Normal file
View file

@ -0,0 +1,12 @@
# Build Container Images Forgejo Action
An action that handles building container images from a Spud service definition.
## Interface
```yml
inputs:
service-definition:
description: Path to the Spud service definition to use.
default: ./service.yml
```

14
action.yml Normal file
View file

@ -0,0 +1,14 @@
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