[Gradle Release Plugin] - pre tag commit: 'laa-ccms-caab-ebs-api-0.… #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | |
name: CI caab-data-api tag and deploy | |
on: | |
push: | |
tags: | |
- '*' | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
define-image-tag: | |
runs-on: ubuntu-latest | |
# map a step output to job output | |
outputs: | |
tag_name: ${{ steps.extract_tag_name.outputs.tag_name }} | |
repo_name: ${{ steps.extract_repo_name.outputs.repo_name }} | |
steps: | |
- name: Extract short repo name | |
shell: bash | |
run: echo "repo_name=caab-ebs${GITHUB_REPOSITORY#*\/laa-ccms-data}" >> $GITHUB_OUTPUT | |
id: extract_repo_name | |
build-test-publish: | |
runs-on: ubuntu-latest | |
outputs: | |
app_version: ${{ steps.capture_version.outputs.app_version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 | |
with: | |
arguments: build | |
- name: Test | |
uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 | |
with: | |
arguments: jacocoTestCoverageVerification | |
- name: Integration Test | |
uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 | |
with: | |
arguments: integrationTest | |
- name: Publish package | |
uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 | |
with: | |
arguments: publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Capture version | |
shell: bash | |
id: capture_version | |
run: | | |
VERSION=$(grep "version=" gradle.properties | cut -d'=' -f2) | |
echo "app_version=${VERSION}" >> $GITHUB_OUTPUT | |
echo "Captured version: $VERSION" | |
- name: Upload jarfile | |
uses: actions/upload-artifact@v3 | |
with: | |
name: data-api-jar | |
path: data-service/build/libs/data-service-${{ steps.capture_version.outputs.app_version }}.jar | |
ecr: | |
needs: [ build-test-publish, define-image-tag ] | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # for requesting jwt | |
contents: read # for actions/checkout | |
steps: | |
# Checkout github repo | |
- uses: actions/checkout@v3 | |
# Assume role in cloud platform | |
- name: download jar | |
uses: actions/download-artifact@v3 | |
with: | |
name: data-api-jar | |
- name: Configure aws credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
role-to-assume: ${{ secrets.DEV_ECR_ROLE_TO_ASSUME }} | |
aws-region: ${{ vars.DEV_ECR_REGION }} | |
- name: Login ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
id: login-ecr | |
# Build and push docker image to container repo | |
- name: Build and push image | |
env: | |
REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
REPOSITORY: ${{ vars.DEV_ECR_REPOSITORY }} | |
REPO_NAME: ${{ needs.define-image-tag.outputs.repo_name }} | |
APP_VERSION: ${{ needs.build-test-publish.outputs.app_version }} | |
run: | | |
echo "Captured version: ${{ env.APP_VERSION }}" | |
docker build --build-arg app_version=${{ env.APP_VERSION }} -t $REGISTRY/$REPOSITORY:${{ env.REPO_NAME }}-${{ env.APP_VERSION }} . | |
docker push $REGISTRY/$REPOSITORY:${{ env.REPO_NAME }}-${{ env.APP_VERSION }} | |
- name: delete artifact | |
uses: geekyeggo/delete-artifact@v2 | |
with: | |
name: data-api-jar | |
update-helm-chart: | |
needs: [ build-test-publish, ecr, define-image-tag ] | |
runs-on: ubuntu-latest | |
environment: development | |
steps: | |
- name: Checkout charts repo | |
uses: actions/checkout@v3 | |
with: | |
repository: ministryofjustice/laa-ccms-caab-helm-charts | |
ref: development | |
path: laa-ccms-caab-helm-charts | |
token: ${{ secrets.REPO_TOKEN }} | |
- name: update helm chart | |
env: | |
REPO_NAME: ${{ needs.define-image-tag.outputs.repo_name }} | |
APP_VERSION: ${{ needs.build-test-publish.outputs.app_version }} | |
run: | | |
echo "${{ env.REPO_NAME }}-${{ env.APP_VERSION }}" | |
cd laa-ccms-caab-helm-charts/laa-ccms-caab-service/charts/laa-ccms-caab-ebs-api/ | |
yq eval-all "( .appVersion = \"${{ env.REPO_NAME }}-${{ env.APP_VERSION }}\" )" -i Chart.yaml | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Actions Bot" | |
git add . | |
git commit -m "update appVersion to ${{ env.REPO_NAME }}-${{ env.APP_VERSION }}" | |
git push origin | |
update-laa-ccms-caab-ui: | |
needs: [ build-test-publish, define-image-tag ] | |
runs-on: ubuntu-latest | |
environment: development | |
steps: | |
- name: Checkout caab-ui repo | |
uses: actions/checkout@v3 | |
with: | |
repository: ministryofjustice/laa-ccms-caab | |
ref: main | |
token: ${{ secrets.REPO_TOKEN }} | |
- name: Create a new branch | |
env: | |
APP_VERSION: ${{ needs.build-test-publish.outputs.app_version }} | |
run: | | |
git checkout -b dependency/update-data-api-version-${APP_VERSION} | |
- name: Update gradle build file | |
env: | |
APP_VERSION: ${{ needs.build-test-publish.outputs.app_version }} | |
run: | | |
sed -i "s/uk.gov.laa.ccms.data:data-api:[^']*/uk.gov.laa.ccms.data:data-api:${APP_VERSION}/g" build.gradle | |
- name: Commit and push changes | |
env: | |
APP_VERSION: ${{ needs.build-test-publish.outputs.app_version }} | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Actions Bot" | |
git add build.gradle | |
git commit -m "Update data-api version to ${APP_VERSION}" | |
git push origin dependency/update-data-api-version-${APP_VERSION} | |
gh auth login --with-token <<< "${{ secrets.REPO_TOKEN }}" | |
gh pr create --base main --head dependency/update-data-api-version-${APP_VERSION} --title "Update data-api version to ${APP_VERSION}" --body "Automatic PR raised by GitHub Actions to update data-api version to ${APP_VERSION}" |