Skip to content

Commit

Permalink
Add build-image.sh and GHA build-image.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
kentsanggds committed Nov 16, 2023
1 parent cc112a1 commit d916361
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/build-image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Build and push images

on:
workflow_dispatch:
inputs:
buildType:
description: Decide on build type
required: true
type: choice
options:
- build_push
- build_only
push:
branches:
- main

jobs:
build_and_push:
name: datagovuk_publish
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 images (without pushing to registry)
if: ${{ inputs.buildType == 'build_only' }}
env:
DRY_RUN: "1"
APP: datagovuk_find
ARCH: amd64
run: ./docker/build-image.sh
- name: Build and push images
if: ${{ inputs.buildType == 'build_push' || github.ref == 'refs/heads/main' }}
env:
APP: datagovuk_find
ARCH: amd64
run: ./docker/build-image.sh
21 changes: 21 additions & 0 deletions docker/build-image.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

set -eux

build () {
if [ "${ARCH}" = "amd64" ]; then
docker build . -t "ghcr.io/alphagov/${APP}:${1}" -f "docker/Dockerfile"
else
docker buildx build --platform "linux/${ARCH}" . -t "ghcr.io/alphagov/${APP}:${1}" -f "docker/Dockerfile"
fi
}

DOCKER_TAG="${GITHUB_SHA}"

build "${DOCKER_TAG}"

if [[ -n ${DRY_RUN:-} ]]; then
echo "Dry run; not pushing to registry"
else
docker push "ghcr.io/alphagov/${APP}:${DOCKER_TAG}"
fi

0 comments on commit d916361

Please sign in to comment.