Bluesky avatar proxy thing
1
fork

Configure Feed

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

fix: put the proper remote ref in the docker image tag

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