CI: set RGM deps on main merge not on tag (#67778)

set deps on main merge not on tag
This commit is contained in:
Kevin Minehart
2023-05-03 14:08:01 -05:00
committed by GitHub
parent 768efe9748
commit 80543a0bfa
2 changed files with 7 additions and 6 deletions

View File

@@ -66,6 +66,7 @@ def rgm_main():
edition = "all",
trigger = trigger,
steps = rgm_build(),
depends_on = ["main-test-backend", "main-test-frontend"],
)
def rgm_tag():
@@ -90,7 +91,7 @@ def rgm_tag():
edition = "all",
trigger = trigger,
steps = rgm_build(script = "drone_publish_tag.sh"),
depends_on = ["main-test-backend", "main-test-frontend"],
depends_on = [],
)
def rgm():