File tree 1 file changed +0
-23
lines changed
1 file changed +0
-23
lines changed Original file line number Diff line number Diff line change 12
12
workflow_dispatch :
13
13
14
14
jobs :
15
- container-bionic :
16
- name : Update default CI container image (Bionic)
17
- runs-on : ubuntu-latest
18
- if : ${{ github.repository == 'lanl/bml' }}
19
- steps :
20
- - name : Checkout
21
- uses : actions/checkout@v3
22
- - name : Login to DockerHub
23
- uses : docker/login-action@v2
24
- with :
25
- username : ${{ secrets.DOCKERHUB_USERNAME }}
26
- password : ${{ secrets.DOCKERHUB_TOKEN }}
27
- - name : Build and push default Docker image
28
- uses : docker/build-push-action@v4
29
- id : docker_build_bionic
30
- with :
31
- context : .
32
- file : Dockerfile-bionic
33
- push : true
34
- tags : nicolasbock/bml:bionic
35
- - name : Image digest
36
- run : |
37
- echo "Default image: ${{ steps.docker_build_bionic.outputs.digest }}"
38
15
39
16
container-focal :
40
17
name : Update Focal CI container image
You can’t perform that action at this time.
0 commit comments