diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bc3d83c..5e9aee6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: local-pvc-releaser + images: appsflyer/local-pvc-releaser tags: | type=ref,event=tag type=semver,pattern={{version}} diff --git a/Makefile b/Makefile index 072c10d..300094f 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Image URL to use all building/pushing image targets TAG ?= $(shell if [ -z "${CI_COMMIT_TAG}" ]; then echo "latest"; else echo ${CI_COMMIT_TAG}; fi) -IMG ?= "local-pvc-releaser" +IMG ?= "appsflyer/local-pvc-releaser" IMAGE = "${IMG}:${TAG}" #GIT GIT_URL ?= "github.com/appsflyer/local-pvc-releaser"