-
Notifications
You must be signed in to change notification settings - Fork 13
62 lines (57 loc) · 1.71 KB
/
container.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
name: Container Image
on:
push:
branches:
- master
schedule:
# Weekly on Sundays:
- cron: '00 04 * * 0'
workflow_dispatch:
jobs:
container-focal:
name: Update CI container images (Focal)
runs-on: ubuntu-latest
if: ${{ github.repository == 'lanl/qmd-progress' }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Focal Docker image
uses: docker/build-push-action@v4
id: docker_build_focal
with:
context: .
file: Dockerfile-focal
push: true
tags: nicolasbock/qmd-progress:latest, nicolasbock/qmd-progress:focal
- name: Image digest
run: |
echo "Focal image: ${{ steps.docker_build_focal.outputs.digest }}"
container-jammy:
name: Update CI container images (Jammy)
runs-on: ubuntu-latest
if: ${{ github.repository == 'lanl/qmd-progress' }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Jammy Docker image
uses: docker/build-push-action@v4
id: docker_build_jammy
with:
context: .
file: Dockerfile-jammy
push: true
tags: nicolasbock/qmd-progress:jammy
- name: Image digest
run: |
echo "Jammy image: ${{ steps.docker_build_jammy.outputs.digest }}"