Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions .github/workflows/build-java-push-aws-ecr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Build and deploy Docker images to AWS ECR (Elastic Container Registry)

on:
push:
branches:
- main
workflow_dispatch:

permissions:
id-token: write
contents: write

env:
ECR_REGISTRY: ${{ secrets.ECR_ARTIFACT_REGISTRY }}
# IMAGE_TAG: ${{ github.sha }}
IMAGE_NAME: ecmsp-project/${{ github.event.repository.name }}

jobs:
build_deploy:
runs-on: ubuntu-latest

steps:
-
name: Check out code
uses: actions/checkout@v3

-
name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'

-
name: Update Maven snapshots
run: mvn -U dependency:resolve

-
name: Configure AWS credentials via OIDC
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::529236942244:role/github-actions-ecr
aws-region: eu-central-1

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

-
name: Release new version
id: release
run: |
bash ./scripts/git_update.sh -v patch

-
name: Add app version (Optional)
run: echo ${{ steps.release.outputs.new-tag }} > version.txt

-
name: Build, tag, and push backend Docker image to AWS ECR
env:
IMAGE_TAG: ${{ steps.release.outputs.new-tag }}
run: |
docker build \
-t $ECR_REGISTRY/$IMAGE_NAME:$IMAGE_TAG \
-f ./Dockerfile .

docker push $ECR_REGISTRY/$IMAGE_NAME:$IMAGE_TAG
68 changes: 0 additions & 68 deletions .github/workflows/build-java-push-gcp-registry.yaml

This file was deleted.

6 changes: 4 additions & 2 deletions .github/workflows/build-test-java-project.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Build and test Java project

on:
pull_request:
workflow_dispatch:
pull_request:
branches:
- main
workflow_dispatch:

jobs:
build_test:
Expand Down
65 changes: 65 additions & 0 deletions scripts/git_update.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
#!/bin/bash

VERSION=""

# get parameters
while getopts v: flag
do
case "${flag}" in
v) VERSION=${OPTARG};;
esac
done

# get highest tag number, and add v0.1.0 if doesn't exist
git fetch --prune --unshallow 2>/dev/null
CURRENT_VERSION=`git describe --abbrev=0 --tags 2>/dev/null`

if [[ $CURRENT_VERSION == '' ]]
then
CURRENT_VERSION='v0.1.0'
fi
echo "Current Version: $CURRENT_VERSION"

# replace . with space so can split into an array
CURRENT_VERSION_PARTS=(${CURRENT_VERSION//./ })

# get number parts
VNUM1=${CURRENT_VERSION_PARTS[0]}
VNUM2=${CURRENT_VERSION_PARTS[1]}
VNUM3=${CURRENT_VERSION_PARTS[2]}

if [[ $VERSION == 'major' ]]
then
VNUM1=v$((VNUM1+1))
elif [[ $VERSION == 'minor' ]]
then
VNUM2=$((VNUM2+1))
elif [[ $VERSION == 'patch' ]]
then
VNUM3=$((VNUM3+1))
else
echo "No version type (https://semver.org/) or incorrect type specified, try: -v [major, minor, patch]"
exit 1
fi

# create new tag
NEW_TAG="$VNUM1.$VNUM2.$VNUM3"
echo "($VERSION) updating $CURRENT_VERSION to $NEW_TAG"

# get current hash and see if it already has a tag
GIT_COMMIT=`git rev-parse HEAD`
NEEDS_TAG=`git describe --contains $GIT_COMMIT 2>/dev/null`

# only tag if no tag already
if [ -z "$NEEDS_TAG" ]; then
echo "Tagged with $NEW_TAG"
git tag $NEW_TAG
git push --tags
git push
else
echo "Already a tag on this commit"
fi

echo "new-tag=$NEW_TAG" >> $GITHUB_OUTPUT

exit 0
Loading