Bluesky avatar proxy thing
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: push docker images

+5 -2
+5 -2
Makefile
··· 14 14 release-dev: 15 15 $(eval VERSION := $(shell svu prerelease --pre-release dev)) 16 16 docker build -t atcr.io/angrydutchman.peedee.es/$(IMAGE_NAME):$(VERSION) . 17 + docker push atcr.io/angrydutchman.peedee.es/$(IMAGE_NAME):$(VERSION) 17 18 git tag $(VERSION) 18 - git push origin $(VERSION) 19 + #git push origin $(VERSION) 19 20 @echo "Built $(IMAGE_NAME):$(VERSION)" 20 21 21 22 release: 22 23 $(eval VERSION := $(shell svu next)) 23 24 docker build -t atcr.io/angrydutchman.peedee.es/$(IMAGE_NAME):$(VERSION) -t atcr.io/angrydutchman.peedee.es/$(IMAGE_NAME):latest . 25 + docker push atcr.io/angrydutchman.peedee.es/$(IMAGE_NAME):$(VERSION) 26 + docker push atcr.io/angrydutchman.peedee.es/$(IMAGE_NAME):latest 24 27 git tag $(VERSION) 25 - git push origin $(VERSION) 28 + #git push origin $(VERSION) 26 29 @echo "Released $(IMAGE_NAME):$(VERSION)"