summaryrefslogtreecommitdiffstats
path: root/Makefile.toml
diff options
context:
space:
mode:
authorBrooks J Rady <b.j.rady@gmail.com>2021-06-03 20:43:20 +0100
committerBrooks J Rady <b.j.rady@gmail.com>2021-06-03 20:43:20 +0100
commitd6a8daba84eaf4e9f408583569f3ca727ba79533 (patch)
tree88c8079dec17d080c8a6a3fa0aede24cc4e5c0f3 /Makefile.toml
parentc65987a285b32658de935d92b61d2186f4548982 (diff)
fix(build): allow crates.io to update between crate uploads
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml22
1 files changed, 9 insertions, 13 deletions
diff --git a/Makefile.toml b/Makefile.toml
index 11ec06b30..e7d2b2060 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -148,34 +148,30 @@ args = ["tag", "v${CARGO_MAKE_CRATE_VERSION}"]
[tasks.publish-zellij-tile]
ignore_errors = true
cwd = "zellij-tile"
-command = "cargo"
-args = ["publish"]
+command = "cargo publish && sleep 15"
[tasks.publish-zellij-client]
-ignore_errors = true
+dependencies = ["publish-zellij-utils"]
cwd = "zellij-client"
-command = "cargo"
-args = ["publish"]
+command = "cargo publish && sleep 15"
[tasks.publish-zellij-server]
-ignore_errors = true
+dependencies = ["publish-zellij-utils"]
cwd = "zellij-server"
-command = "cargo"
-args = ["publish"]
+command = "cargo publish && sleep 15"
[tasks.publish-zellij-utils]
-ignore_errors = true
+dependencies = ["publish-zellij-tile"]
cwd = "zellij-utils"
-command = "cargo"
-args = ["publish"]
+command = "cargo publish && sleep 15"
[tasks.publish-zellij-tile-utils]
ignore_errors = true
cwd = "zellij-tile-utils"
-command = "cargo"
-args = ["publish"]
+command = "cargo publish && sleep 15"
[tasks.publish-zellij]
+dependencies = ["publish-zellij-client", "publish-zellij-server", "publish-zellij-utils"]
command = "cargo"
args = ["publish"]