File tree Expand file tree Collapse file tree 1 file changed +0
-32
lines changed Expand file tree Collapse file tree 1 file changed +0
-32
lines changed Original file line number Diff line number Diff line change 88
99jobs :
1010
11- alma9_base :
12- name : Push Alma9 docker image to Docker Hub
13- runs-on : ubuntu-latest
14- steps :
15- - name : Check username
16- run : |
17- echo ${{ vars.BOOGERT_DOCKER_USERNAME }}
18-
19- - name : Check out the repo
20- uses : actions/checkout@v4
21-
22- - name : Log in to Docker Hub
23- uses : docker/login-action@v3
24- with :
25- Username : ${{ vars.BOOGERT_DOCKER_USERNAME }}
26- password : ${{ secrets.BOOGERT_DOCKER_PASSWORD }}
27-
28- - name : Extract metadata (tags, labels) for Docker
29- id : meta
30- uses : docker/metadata-action@v5
31- with :
32- images : sboogert/alma9-base
33-
34- - name : Build and push Docker image
35- uses : docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
36- with :
37- context : .
38- file : ./dockerfiles/alma9-base
39- push : true
40- tags : ${{ steps.meta.outputs.tags }}
41- labels : ${{ steps.meta.outputs.labels }}
42-
4311 ubuntu20_base :
4412 name : Push Ubuntu20 docker image to Docker Hub
4513 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments