Skip to content

Merge pull request #14 from devgateway/task/DVIZ-24/admin-docker-opti… #9

Merge pull request #14 from devgateway/task/DVIZ-24/admin-docker-opti…

Merge pull request #14 from devgateway/task/DVIZ-24/admin-docker-opti… #9

Workflow file for this run

name: Build and Release
on:
workflow_dispatch:
push:
branches:
- main
- release/*
permissions:
contents: write
pull-requests: write
packages: write
jobs:
release-and-tag:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.release.outputs.version }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'corretto'
cache: 'maven'
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: |
~/.m2/repository
!~/.m2/repository/org/devgateway/tcdi
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Configure Git user
run: |
git config user.email "[email protected]"
git config user.name "Timothy Mugo Gachengo"
- name: Build the Maven project
run: |
mvn package -DskipTests=true -Dcheckstyle.skip \
&& mkdir -p forms/target/deps \
&& cd forms/target/deps \
&& jar -xf ../*.jar
- name: Generate Tag
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
release_branches: 'master,main,release/*'
- uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
artifacts: forms/target/*.jar
build-and-push-docker-image:
needs: release-and-tag
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
registry: ${{ vars.DOCKER_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
cache-from: type=gha, scope=data-viz-admin
cache-to: type=gha, scope=data-viz-admin
context: .
push: true
build-args: |
VERSION=${{ needs.release-and-tag.outputs.version }}
TAG=${{ needs.release-and-tag.outputs.version }}
tags: |
${{ vars.DOCKER_REGISTRY }}/data-viz-admin:latest
${{ vars.DOCKER_REGISTRY }}/data-viz-admin:v${{ needs.release-and-tag.outputs.version }}