ci: remove push redundant calls
This commit is contained in:
parent
e96e611d43
commit
d16bd5acbe
2 changed files with 45 additions and 22 deletions
39
.forgejo/workflows/build-images-action.yml
Normal file
39
.forgejo/workflows/build-images-action.yml
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
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
|
|
@ -17,28 +17,12 @@ jobs:
|
||||||
needs: [pre-run]
|
needs: [pre-run]
|
||||||
runs-on: imagefactory-latest
|
runs-on: imagefactory-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: ./.forgejo/workflows/build-images-action.yml
|
||||||
- name: Setup Spud
|
with:
|
||||||
uses: https://forge.karnov.club/spadinastan/setup-spud-action@feat/install-spud-in-env
|
image-prefix: sesame
|
||||||
- name: Login to Registry
|
registry-user: ${{ secrets.REGISTRY_USER }}
|
||||||
run: podman login -u ${{ secrets.REGISTRY_USER }} -p ${{ secrets.REGISTRY_TOKEN }} ${{ vars.REGISTRY_ENDPOINT }}
|
registry-token: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
- name: Set image metadata
|
registry-endpoint: ${{ vars.REGISTRY_ENDPOINT }}
|
||||||
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: |
|
|
||||||
podman push localhost/sesame/caddy:latest ${{ vars.REGISTRY_ENDPOINT }}/sesame/caddy:latest
|
|
||||||
podman push localhost/sesame/caddy:latest ${{ vars.REGISTRY_ENDPOINT }}/sesame/caddy:${{ steps.image-metadata.outputs.image-tag }}
|
|
||||||
podman push localhost/sesame/caddy:latest ${{ vars.REGISTRY_ENDPOINT }}/sesame/caddy:${{ github.ref_name }}
|
|
||||||
podman push localhost/sesame/promtail:latest ${{ vars.REGISTRY_ENDPOINT }}/sesame/promtail:latest
|
|
||||||
podman push localhost/sesame/promtail:latest ${{ vars.REGISTRY_ENDPOINT }}/sesame/promtail:${{ steps.image-metadata.outputs.image-tag }}
|
|
||||||
podman push localhost/sesame/promtail:latest ${{ vars.REGISTRY_ENDPOINT }}/sesame/promtail:${{ github.ref_name }}
|
|
||||||
post-run:
|
post-run:
|
||||||
runs-on: imagefactory-latest
|
runs-on: imagefactory-latest
|
||||||
needs: [build]
|
needs: [build]
|
||||||
|
|
Loading…
Reference in a new issue