mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 04:35:24 +00:00
Add tag command to Makefile
This commit is contained in:
parent
e3e9731973
commit
2aae10193e
9
Makefile
9
Makefile
@ -1,6 +1,7 @@
|
|||||||
VENV := venv
|
VENV := venv
|
||||||
PYTHON := $(VENV)/bin/python
|
PYTHON := $(VENV)/bin/python
|
||||||
HOST = $(shell ifconfig | grep "inet " | tail -1 | cut -d\ -f2)
|
HOST = $(shell ifconfig | grep "inet " | tail -1 | cut -d\ -f2)
|
||||||
|
TAG = v$(shell grep -E '__version__ = ".*"' pyrogram/__init__.py | cut -d\" -f2)
|
||||||
|
|
||||||
RM := rm -rf
|
RM := rm -rf
|
||||||
|
|
||||||
@ -31,3 +32,11 @@ build:
|
|||||||
make clean
|
make clean
|
||||||
$(PYTHON) setup.py sdist
|
$(PYTHON) setup.py sdist
|
||||||
$(PYTHON) setup.py bdist_wheel
|
$(PYTHON) setup.py bdist_wheel
|
||||||
|
|
||||||
|
tag:
|
||||||
|
git tag $(TAG)
|
||||||
|
git push origin $(TAG)
|
||||||
|
|
||||||
|
dtag:
|
||||||
|
git tag -d $(TAG)
|
||||||
|
git push origin -d $(TAG)
|
Loading…
Reference in New Issue
Block a user