sesame/.forgejo/workflows/build-images-action.yml
Marc Cataford d16bd5acbe
Some checks failed
/ pre-run (push) Successful in 24s
/ build (push) Failing after 18s
/ post-run (push) Has been skipped
ci: remove push redundant calls
2024-11-07 20:20:57 -05:00

39 lines
1.3 KiB
YAML

name: Build Container Images
inputs:
image-prefix:
required: true
registry-user:
required: true
registry-token:
required: true
registry-endpoint:
required: true
runs:
using: composite
steps:
- uses: actions/checkout@v4
- name: Setup Spud
uses: https://forge.karnov.club/spadinastan/setup-spud-action@feat/install-spud-in-env
- name: Login to Registry
run: podman login -u ${{ inputs.registry-user }} -p ${{ inputs.registry-token }} ${{ inputs.registry-endpoint }}
- name: Set image metadata
id: image-metadata
run: |
echo "image-tag=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Build images
run: |
spud build -d ./service.yml
podman image ls
- name: Push tagged images to registry
if: ${{ github.event_name == 'push' }}
run: |
for image in $(podman image ls --format {{.Repository}} | grep localhost/${{ inputs.image-prefix }})
do
for tag in latest ${{ steps.image-metadata.outputs.image-tag }} ${{ github.ref_name }}
do
SRC=$image:latest
DEST=${{ vars.REGISTRY_ENDPOINT }}/$image:$tag
echo "Pushing $SRC to $DEST"
podman push $SRC $DEST
done
done