diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7b9fe49..043c10d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,6 @@ jobs: runs-on: ubuntu-latest env: GO_VERSION: 1.19 - SEIHON_VERSION: v0.9.0 CGO_ENABLED: 0 steps: diff --git a/Makefile b/Makefile index 3f4eabd..30cf594 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,4 @@ -.PHONY: default check test build image publish-images - -TAG_NAME := $(shell git tag -l --contains HEAD) +.PHONY: default check test build image IMAGE_NAME := traefik/whoami @@ -17,6 +15,3 @@ check: image: docker build -t $(IMAGE_NAME) . - -publish-images: - seihon publish -v "$(TAG_NAME)" -v "latest" --image-name $(IMAGE_NAME) --dry-run=false