diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 12e721f..a066961 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,6 +18,11 @@ jobs: with: go-version-file: go.mod cache: true + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - uses: goreleaser/goreleaser-action@v6 with: version: '~> v1' diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 36667c1..4381134 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -63,3 +63,4 @@ docker_manifests: image_templates: - 'ymtdzzz/otel-tui:{{ .Tag }}-amd64' - 'ymtdzzz/otel-tui:{{ .Tag }}-arm64' + - 'ymtdzzz/otel-tui:latest'