ci: extract build + push actions
All checks were successful
/ pre-run (push) Successful in 25s
/ build (push) Successful in 1m58s
/ post-run (push) Successful in 27s

This commit is contained in:
Marc 2024-11-07 22:34:19 -05:00
parent 61a2f68098
commit b0a431620e
Signed by: marc
GPG key ID: 048E042F22B5DC79
3 changed files with 4 additions and 44 deletions

View file

@ -1,11 +0,0 @@
name: Build Container Images
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: Build images
run: |
spud build -d ./service.yml
podman image ls

View file

@ -18,8 +18,10 @@ jobs:
runs-on: imagefactory-latest
steps:
- uses: actions/checkout@v4
- uses: ./.forgejo/workflows/build-images-action
- uses: ./.forgejo/workflows/push-images
- uses: https://forge.karnov.club/spadinastan/build-container-images-action@main
with:
service-definition: ./service.yml
- uses: https://forge.karnov.club/spadinastan/push-container-images-action@main
with:
image-prefix: sesame
registry-user: ${{ secrets.REGISTRY_USER }}

View file

@ -1,31 +0,0 @@
name: Push Container Images
inputs:
image-prefix:
required: true
registry-user:
required: true
registry-token:
required: true
registry-endpoint:
required: true
runs:
using: composite
steps:
- 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: Push tagged images to registry
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=${{ inputs.registry-endpoint }}/$image:$tag
echo "Pushing $SRC to $DEST"
podman push $SRC $DEST
done
done