chore: tag make command
This commit is contained in:
parent
2afbd36cb4
commit
ff80787d6a
1 changed files with 7 additions and 0 deletions
7
Makefile
7
Makefile
|
|
@ -47,6 +47,13 @@ docker-update-latest: docker-buildx-prepare
|
|||
# Release with latest
|
||||
docker-release-all: docker-release docker-update-latest
|
||||
|
||||
tag:
|
||||
@version=$$(grep '^version = ' pyproject.toml | sed 's/version = "\(.*\)"/\1/'); \
|
||||
echo "Creating tag v$$version"; \
|
||||
git tag "v$$version"; \
|
||||
git push origin "v$$version"
|
||||
|
||||
|
||||
dev:
|
||||
docker compose -f docker-compose.dev.yml up --build
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue