diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 95adc24b2b..4d3cdb6539 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -97,7 +97,10 @@ jobs: - name: Login to docker run: docker login -u ${{ secrets.dockerhubusername }} -p "${{ secrets.dockerhubpassword }}" - name: Tag the image - run: docker tag polygloat/polygloat polygloat/polygloat:${{ steps.version.outputs.VERSION }} + run: | + docker tag polygloat/polygloat polygloat/polygloat:${{ steps.version.outputs.VERSION }} + docker tag polygloat/polygloat polygloat/polygloat:latest + - name: Publish docker image run: docker push polygloat/polygloat:${{ steps.version.outputs.VERSION }}