-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (66 loc) · 2.56 KB
/
build-dspace-images.yml
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
66
67
68
69
70
71
72
73
74
---
name: 2. Build dspace-* images
on:
workflow_dispatch: # This allows to kick-off the action manually from GitHub Actions
inputs:
dspace_version:
description: DSpace Version
required: true
default: 7.6
type: choice
options:
- 7.6
- 7_x
source_image_tag:
description: Source Image Tag
required: true
default: umich
type: choice
options:
- umich
- issue-working
jobs:
build:
name: dspace-*:${{ github.event.inputs.source_image_tag }}
runs-on: ubuntu-latest
# Ensure this job only executed for 'mlibrary/dspace-containerization'
if: github.repository == 'mlibrary/dspace-containerization'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push dspace-solr image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: 'ghcr.io/mlibrary/dspace-containerization/dspace-solr:${{ github.sha }}, ghcr.io/mlibrary/dspace-containerization/dspace-solr:${{ github.event.inputs.source_image_tag }}'
file: dspace/solr.dockerfile
build-args: |
SOURCE_IMAGE_TAG=${{ github.event.inputs.source_image_tag }}
- name: Build and push dspace-backend image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: 'ghcr.io/mlibrary/dspace-containerization/dspace-backend:${{ github.sha }}, ghcr.io/mlibrary/dspace-containerization/dspace-backend:${{ github.event.inputs.source_image_tag }}'
file: dspace/backend.dockerfile
build-args: |
DSPACE_VERSION=${{ github.event.inputs.dspace_version }}
SOURCE_IMAGE_TAG=${{ github.event.inputs.source_image_tag }}
- name: Build and push dspace-frontend image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: 'ghcr.io/mlibrary/dspace-containerization/dspace-frontend:${{ github.sha }}, ghcr.io/mlibrary/dspace-containerization/dspace-frontend:${{ github.event.inputs.source_image_tag }}'
file: dspace/frontend.dockerfile
build-args: |
SOURCE_IMAGE_TAG=${{ github.event.inputs.source_image_tag }}