Skip to content

Commit

Permalink
Workflow to build and push to GHCR and MP ECR (#738)
Browse files Browse the repository at this point in the history
* DST-17030 - Created build and push GH Actions workflow to push UMT images to modernisation platform.

* DST-17030 - Run action on push.

* DST-17030 - Added permissions for configuring AWS credentials.

* DST-17030 - Added GHCR push to workflow.

* DST-17030 - Added write packages permission for GHCR push.

* DST-17030 - Only run the build and push against main branch and new releases.
  • Loading branch information
jamesmacbeth-unilink authored May 29, 2024
1 parent c6b67d1 commit 069211c
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ runs:
with:
node-version: 16
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
uses: gradle/actions/setup-gradle@v3
71 changes: 71 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Build

on:
release:
types: [published, edited]
push:
branches:
- main

permissions:
id-token: write # Required for OIDC
contents: read
packages: write

jobs:
build:
runs-on: ubuntu-latest

env:
ecr_image_name: 374269020027.dkr.ecr.eu-west-2.amazonaws.com/delius-core-user-management
ghcr_image_name: ghcr.io/${{ github.repository_owner }}/delius-core-user-management
version: ${{ github.event.release.tag_name }}

steps:
- uses: actions/checkout@v3

- uses: ./.github/actions/setup

- name: Set version
run: |
version=${tag:-dev}
echo "version=$version" | tee -a "$GITHUB_ENV"
echo "ORG_GRADLE_PROJECT_version=$version" | tee -a "$GITHUB_ENV"
env:
tag: ${{ github.event.release.tag_name }}

- name: Build image
run: ./gradlew clean build bootBuildImage --info --build-cache

- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}

- name: Push to GHCR
run: |
docker tag "delius-user-management:$version" "$ghcr_image_name:$version"
docker tag "delius-user-management:$version" "$ghcr_image_name:latest"
docker push "$ghcr_image_name:$version"
docker push "$ghcr_image_name:latest"
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::326912278139:role/modernisation-platform-oidc-cicd
role-session-name: delius-user-management-${{ github.run_number }}
aws-region: eu-west-2

- name: Login to Amazon ECR
uses: aws-actions/amazon-ecr-login@v2
with:
registries: "374269020027"

- name: Push to Amazon ECR
run: |
docker tag "delius-user-management:$version" "$ecr_image_name:$version"
docker tag "delius-user-management:$version" "$ecr_image_name:latest"
docker push "$ecr_image_name:$version"
docker push "$ecr_image_name:latest"

0 comments on commit 069211c

Please sign in to comment.