We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b1b1b commit 0dd34ebCopy full SHA for 0dd34eb
.github/workflows/publish-dockerhub.yml
@@ -36,12 +36,10 @@ jobs:
36
37
- name: Build the Apache Fineract image
38
run: |
39
+ TAGS=${{ github.ref_name }}
40
if [ "${{ github.ref_name }}" == "develop" ]; then
- TAGS="latest"
41
- else
42
- TAGS="${{ github.ref_name }}"
+ TAGS="$TAGS,${{ steps.git_hashes.outputs.short_hash }},${{ steps.git_hashes.outputs.long_hash }}"
43
fi
44
-
45
./gradlew --no-daemon --console=plain :fineract-provider:jib -x test -x cucumber \
46
-Djib.to.auth.username=${{secrets.DOCKERHUB_USER}} \
47
-Djib.to.auth.password=${{secrets.DOCKERHUB_TOKEN}} \
0 commit comments