This is an automated email from the ASF dual-hosted git repository. adamsaghy pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/fineract.git
commit eaa9c858ed27f36b212de2368c3ee9af32448433 Author: Akshat Soni <[email protected]> AuthorDate: Mon Sep 8 20:55:28 2025 +0530 FINERACT-2350: Fix DockerHub tags, use 'latest' for develop and version tags for release --- .github/workflows/publish-dockerhub.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-dockerhub.yml b/.github/workflows/publish-dockerhub.yml index 062c1eb109..fc3c472f30 100644 --- a/.github/workflows/publish-dockerhub.yml +++ b/.github/workflows/publish-dockerhub.yml @@ -36,10 +36,12 @@ jobs: - name: Build the Apache Fineract image run: | - TAGS=${{ github.ref_name }} if [ "${{ github.ref_name }}" == "develop" ]; then - TAGS="$TAGS,${{ steps.git_hashes.outputs.short_hash }},${{ steps.git_hashes.outputs.long_hash }}" + TAGS="latest" + else + TAGS="${{ github.ref_name }}" 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}} \
