File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,12 @@ jobs:
2525 echo "tag_patch=$(echo ${{ matrix.db-type }})-${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
2626 echo "tag_minor=$(echo ${{ matrix.db-type }})-$(echo ${GITHUB_REF#refs/tags/} | cut -d. -f1,2)" >> $GITHUB_ENV
2727 echo "tag_major=$(echo ${{ matrix.db-type }})-$(echo ${GITHUB_REF#refs/tags/} | cut -d. -f1)" >> $GITHUB_ENV
28- echo "tag_latest=$(echo ${{ matrix.db-type }})-latest" >> $GITHUB_ENV
2928
3029 - uses : mr-smithers-excellent/docker-build-push@v6
3130 name : Build & push Docker image to ghcr.io for ${{ matrix.db-type }}
3231 with :
3332 image : umami
34- tags : ${{ env.tag_major }}, ${{ env.tag_minor }}, ${{ env.tag_patch }}, ${{ env.tag_latest }}
33+ tags : ${{ env.tag_major }}, ${{ env.tag_minor }}, ${{ env.tag_patch }}
3534 buildArgs : DATABASE_TYPE=${{ matrix.db-type }}
3635 registry : ghcr.io
3736 multiPlatform : true
4342 name : Build & push Docker image to docker.io for ${{ matrix.db-type }}
4443 with :
4544 image : umamisoftware/umami
46- tags : ${{ env.tag_major }}, ${{ env.tag_minor }}, ${{ env.tag_patch }}, ${{ env.tag_latest }}
45+ tags : ${{ env.tag_major }}, ${{ env.tag_minor }}, ${{ env.tag_patch }}
4746 buildArgs : DATABASE_TYPE=${{ matrix.db-type }}
4847 registry : docker.io
4948 username : ${{ secrets.DOCKER_USERNAME }}
50- password : ${{ secrets.DOCKER_PASSWORD }}
49+ password : ${{ secrets.DOCKER_PASSWORD }}
You can’t perform that action at this time.
0 commit comments