FINERACT-2202: Bulk import fix (#4709) #739
This file contains hidden or 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
name: Fineract Publish to DockerHub | |
on: | |
push: | |
branches: | |
- develop | |
tags: | |
- 1.* | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
env: | |
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
steps: | |
- name: Checkout Source Code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4 | |
with: | |
java-version: '21' | |
distribution: 'zulu' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@8379f6a1328ee0e06e2bb424dadb7b159856a326 # v4.4.0 | |
- name: Extract branch name | |
shell: bash | |
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT | |
id: extract_branch | |
- name: Get Git Hashes | |
run: | | |
echo "short_hash=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
echo "long_hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | |
id: git_hashes | |
- name: Build the Apache Fineract image | |
run: | | |
TAGS=${{ steps.extract_branch.outputs.branch }} | |
if [ "${{ steps.extract_branch.outputs.branch }}" == "develop" ]; then | |
TAGS="$TAGS,${{ steps.git_hashes.outputs.short_hash }},${{ steps.git_hashes.outputs.long_hash }}" | |
fi | |
./gradlew --no-daemon --console=plain :fineract-provider:jib -x test -x cucumber \ | |
-Djib.to.auth.username=${{secrets.DOCKERHUB_USER}} \ | |
-Djib.to.auth.password=${{secrets.DOCKERHUB_TOKEN}} \ | |
-Djib.from.platforms=linux/amd64,linux/arm64 \ | |
-Djib.to.image=apache/fineract \ | |
-Djib.to.tags=$TAGS |