fixed clean target and not showing credentials
This commit is contained in:
parent
883b06c29c
commit
1076dfaff9
7
Makefile
7
Makefile
@ -37,7 +37,7 @@ build:
|
|||||||
--label org.opencontainers.image.url="https://${REPO}/-/packages/container/${IMAGENAME}/${VERSION}" \
|
--label org.opencontainers.image.url="https://${REPO}/-/packages/container/${IMAGENAME}/${VERSION}" \
|
||||||
--label org.opencontainers.image.version="${VERSION}" \
|
--label org.opencontainers.image.version="${VERSION}" \
|
||||||
--label org.opencontainers.image.vendor="Jonas Forsberg" \
|
--label org.opencontainers.image.vendor="Jonas Forsberg" \
|
||||||
--tag docker.io/bardak/restic:$(VERSION) \
|
--tag ${REPO}/${IMAGENAME}:$(VERSION) \
|
||||||
.
|
.
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@ -48,5 +48,6 @@ release: require_clean_git build
|
|||||||
git tag -a v$(VERSION) -m "restic version: ${TMP_MESSAGE}"
|
git tag -a v$(VERSION) -m "restic version: ${TMP_MESSAGE}"
|
||||||
git push origin v$(VERSION)
|
git push origin v$(VERSION)
|
||||||
podman tag ${REPO}/${IMAGENAME}:$(VERSION) ${REPO}/${IMAGENAME}:latest
|
podman tag ${REPO}/${IMAGENAME}:$(VERSION) ${REPO}/${IMAGENAME}:latest
|
||||||
podman push --creds $(USERNAME):$(PASSWORD) ${REPO}/${IMAGENAME}:$(VERSION)
|
@ echo "Pushing images"
|
||||||
podman push --creds $(USERNAME):$(PASSWORD) ${REPO}/${IMAGENAME}:latest
|
@ podman push --creds $(USERNAME):$(PASSWORD) ${REPO}/${IMAGENAME}:$(VERSION)
|
||||||
|
@ podman push --creds $(USERNAME):$(PASSWORD) ${REPO}/${IMAGENAME}:latest
|
||||||
|
Loading…
Reference in New Issue
Block a user