@@ -628,6 +628,35 @@ jobs:
628628 tags : ${{ steps.meta.outputs.tags }}
629629 labels : ${{ steps.meta.outputs.labels }}
630630
631+ alma9-g4-10-4 :
632+ needs : [alma9_base]
633+ name : Push Alma9 g4.10.4 docker image to Docker Hub
634+ runs-on : ubuntu-latest
635+ steps :
636+ - name : Check out the repo
637+ uses : actions/checkout@v4
638+
639+ - name : Log in to Docker Hub
640+ uses : docker/login-action@v3
641+ with :
642+ Username : ${{ vars.BOOGERT_DOCKER_USERNAME }}
643+ password : ${{ secrets.BOOGERT_DOCKER_PASSWORD }}
644+
645+ - name : Extract metadata (tags, labels) for Docker
646+ id : meta
647+ uses : docker/metadata-action@v5
648+ with :
649+ images : sboogert/alma9-g4.10.4
650+
651+ - name : Build and push Docker image
652+ uses : docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
653+ with :
654+ context : .
655+ file : ./dockerfiles/alma9-g4.10.4
656+ push : true
657+ tags : ${{ steps.meta.outputs.tags }}
658+ labels : ${{ steps.meta.outputs.labels }}
659+
631660 alma9-g4-10-7 :
632661 needs : [alma9_base]
633662 name : Push Alma9 g4.10.7 docker image to Docker Hub
@@ -657,6 +686,35 @@ jobs:
657686 tags : ${{ steps.meta.outputs.tags }}
658687 labels : ${{ steps.meta.outputs.labels }}
659688
689+ alma9-g4-10-7jai :
690+ needs : [alma9_base]
691+ name : Push Alma9 g4.10.7jai docker image to Docker Hub
692+ runs-on : ubuntu-latest
693+ steps :
694+ - name : Check out the repo
695+ uses : actions/checkout@v4
696+
697+ - name : Log in to Docker Hub
698+ uses : docker/login-action@v3
699+ with :
700+ Username : ${{ vars.BOOGERT_DOCKER_USERNAME }}
701+ password : ${{ secrets.BOOGERT_DOCKER_PASSWORD }}
702+
703+ - name : Extract metadata (tags, labels) for Docker
704+ id : meta
705+ uses : docker/metadata-action@v5
706+ with :
707+ images : sboogert/alma9-g4.10.7jai
708+
709+ - name : Build and push Docker image
710+ uses : docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
711+ with :
712+ context : .
713+ file : ./dockerfiles/alma9-g4.10.7jai
714+ push : true
715+ tags : ${{ steps.meta.outputs.tags }}
716+ labels : ${{ steps.meta.outputs.labels }}
717+
660718 alma9-g4-11-0 :
661719 needs : [alma9_base]
662720 name : Push Alma9 g4.11.0 docker image to Docker Hub
0 commit comments