forked from lanl/bml
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (34 loc) · 957 Bytes
/
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
---
name: Container Image
on:
push:
branches:
- master
schedule:
# Weekly on Sundays:
- cron: '00 04 * * 0'
workflow_dispatch:
jobs:
container-focal:
name: Update Focal CI container image
runs-on: ubuntu-latest
if: ${{ github.repository == 'lanl/bml' }}
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 experimental Focal Docker image
uses: docker/build-push-action@v4
id: docker_build_focal
with:
context: .
file: Dockerfile-focal
push: true
tags: nicolasbock/bml:latest, nicolasbock/bml:focal
- name: Image digest
run: |
echo "Focal image: ${{ steps.docker_build_focal.outputs.digest }}"