Skip to content

Commit 421399b

Browse files
committed
Updated dockerignore and publish script
1 parent a047065 commit 421399b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.dockerignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,8 @@ target
33
.env
44
.gitignore
55
LICENSE
6-
README.md
6+
README.md
7+
publish.py
8+
9+
**/*.db
10+
**/*.sqlite

publish.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def check_staged_changes() -> bool:
161161
subprocess.check_output(["git", "push", "-d", "origin", "v" + current_version])
162162

163163
print("[Info]\tRemove tags will only remove tags and revert commits locally.")
164-
ans = input(" > Do you want to also push the reverted commits? (WARNING! THIS WILL PERFORM A FORCE PUSH) (y/n):").lower()
164+
ans = input(" > Do you want to also push the reverted commits? (WARNING! THIS WILL PERFORM A FORCE PUSH) (y/n): ").lower()
165165

166166
if ans == "y" or ans == "yes":
167167
subprocess.check_output(["git", "push", "-f", "origin", "main"])

0 commit comments

Comments
 (0)