diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0e80355..6954f4d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,9 +71,4 @@ jobs: run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin - name: Build and push run: | - if [ -z "${{ needs.bump_version.outputs.version }}" ]; then - VERSION="dev" - else - VERSION="${{ steps.bump_version.outputs.version }}" - fi - docker buildx build --platform linux/amd64,linux/arm64 -t $(echo "ghcr.io/${{ github.repository }}:$VERSION" | tr '[:upper:]' '[:lower:]') --push . + docker buildx build --platform linux/amd64,linux/arm64 -t $(echo "ghcr.io/${{ github.repository }}:latest" | tr '[:upper:]' '[:lower:]') --push .