We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f7a8a4 commit 291bd2bCopy full SHA for 291bd2b
services/tileserver/Makefile
@@ -1,3 +1,7 @@
1
+VERSION := 2.3.0-beta.2
2
+
3
+TAG := hub.opensciencegrid.org/macrostrat/tileserver:$(VERSION)
4
5
serve:
6
poetry run uvicorn macrostrat_tileserver:app --log-level debug --reload --port 8000
7
@@ -22,4 +26,9 @@ docker-run:
22
26
23
27
docker:
24
28
docker build -t macrostrat-tileserver .
25
- docker run -p 8000:8000 --env-file .env macrostrat-tileserver
29
+ docker run -p 8000:8000 --env-file .env macrostrat-tileserver
30
31
+publish:
32
+# Ensure the git repository is clean
33
+ @git diff --quiet || (echo "Uncommitted changes present. Please commit or stash them before publishing." && exit 1)
34
+ git tag -a v$(VERSION) -m "Version $(VERSION)"
0 commit comments