Skip to content

Commit 3237374

Browse files
authored
Do not call git in publish-docker target (#19)
1 parent 5cad13e commit 3237374

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ clean:
2626
git clean -dfx --exclude='tests/configuration*.json'
2727

2828
.PHONY: dist
29-
dist: clean
29+
dist:
3030
python3 setup.py sdist bdist_wheel --universal
3131

3232
.PHONY: check_git
@@ -35,7 +35,7 @@ check_git:
3535
git diff origin/master --exit-code
3636

3737
.PHONY: publish
38-
publish: check_git test dist
38+
publish: check_git test clean dist
3939
python3 -m twine upload dist/*
4040

4141
.PHONY: init-docker

0 commit comments

Comments
 (0)