File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -599,6 +599,35 @@ jobs:
599599 tags : ${{ steps.meta.outputs.tags }}
600600 labels : ${{ steps.meta.outputs.labels }}
601601
602+ ubuntu24-g4-11-3-graphics :
603+ needs : [ubuntu24_base]
604+ name : Push Ubuntu24 g4.11.3 graphics docker image to Docker Hub
605+ runs-on : ubuntu-latest
606+ steps :
607+ - name : Check out the repo
608+ uses : actions/checkout@v4
609+
610+ - name : Log in to Docker Hub
611+ uses : docker/login-action@v3
612+ with :
613+ Username : ${{ vars.BOOGERT_DOCKER_USERNAME }}
614+ password : ${{ secrets.BOOGERT_DOCKER_PASSWORD }}
615+
616+ - name : Extract metadata (tags, labels) for Docker
617+ id : meta
618+ uses : docker/metadata-action@v5
619+ with :
620+ images : bdsim/ubuntu24-g4.11.3-graphics
621+
622+ - name : Build and push Docker image
623+ uses : docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
624+ with :
625+ context : .
626+ file : ./dockerfiles/ubuntu24-g4.11.3-graphics
627+ push : true
628+ tags : ${{ steps.meta.outputs.tags }}
629+ labels : ${{ steps.meta.outputs.labels }}
630+
602631 centos8-g4-10-7 :
603632 needs : [centos8_base]
604633 name : Push Centos8 g4.10.7 docker image to Docker Hub
You can’t perform that action at this time.
0 commit comments