swarm repositories / source
summaryrefslogtreecommitdiff
path: root/publish.py
diff options
context:
space:
mode:
Diffstat (limited to 'publish.py')
-rwxr-xr-xpublish.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/publish.py b/publish.py
index 417e087..fe5bce8 100755
--- a/publish.py
+++ b/publish.py
@@ -155,8 +155,8 @@ def registry_token() -> str:
def publish_crate(version: Version) -> None:
run("./check.py", "verify")
run("cargo", "publish", "--dry-run", "--locked", "-p", "memview")
- run_with_token("cargo", "publish", "--locked", "-p", "memview")
ensure_tag(version)
+ run_with_token("cargo", "publish", "--locked", "-p", "memview")
def verify_remote(remote: str) -> None: