-
Notifications
You must be signed in to change notification settings - Fork 2
60 lines (58 loc) · 1.82 KB
/
build-image.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
name: Build and push images
on:
workflow_dispatch:
inputs:
buildType:
description: Decide on what to build
required: true
type: choice
options:
- build_push
- build_only
push:
branches:
- main
jobs:
build_and_push:
name: Build and push dyanmic and static harvest source images
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Login to GHCR
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
with:
ref: ${{ inputs.gitRef }}
- name: Build dynamic
if: ${{ inputs.buildType == 'build_only' }}
uses: docker/build-push-action@v5
with:
context: ./dynamic
push: false
tags: ghcr.io/alphagov/dynamic-ckan-harvest-source:1.0.0
- name: Build static
if: ${{ inputs.buildType == 'build_only' }}
uses: docker/build-push-action@v5
with:
context: ./static
push: false
tags: ghcr.io/alphagov/static-ckan-harvest-source:1.0.0
- name: Build and push dynamic
if: ${{ inputs.buildType == 'build_push' || github.ref == 'refs/heads/main' }}
uses: docker/build-push-action@v5
with:
context: ./dynamic
push: true
tags: ghcr.io/alphagov/dynamic-ckan-harvest-source:1.0.0
- name: Build and push static
if: ${{ inputs.buildType == 'build_push' || github.ref == 'refs/heads/main' }}
uses: docker/build-push-action@v5
with:
context: ./static
push: true
tags: ghcr.io/alphagov/static-ckan-harvest-source:1.0.0