-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (54 loc) · 1.56 KB
/
imaging.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
63
64
65
# EDRN Cancer Data Expo Imaging
# =============================
#
---
name: EDRN Cancer Data Expo Imaging
# Triggers
# --------
#
# Run on any push to the Renaissance branch of the P5 code.
on:
push:
branches:
- master
paths:
- 'src/**'
- 'etc/**'
- 'Dockerfile'
- 'site.cfg'
# Jobs
# ----
#
# What to do.
jobs:
imaging:
name: 🏞 CancerDataExpo Imaging
runs-on: ubuntu-latest
steps:
-
name: 💳 Docker Hub Identification
uses: docker/login-action@v2
with:
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{secrets.DOCKERHUB_TOKEN}}
-
name: 📚 Repository Checkout
uses: actions/checkout@v3
-
name: 🎰 QEMU Multiple Machine Emulation
uses: docker/setup-qemu-action@v2
-
name: 🚢 Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: 🧱 Image Construction and Publication
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
# Cannot build for ARM becuase Plone base image doesn't support it
platforms: linux/amd64
push: true
tags: ${{secrets.DOCKERHUB_USERNAME}}/cancerdataexpo:latest
...
# -*- mode: YAML; tab-width: 4 -*-