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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

View File

@ -4548,7 +4548,9 @@ volumes:
--- ---
clone: clone:
retries: 3 retries: 3
depends_on: [] depends_on:
- main-test-backend
- main-test-frontend
image_pull_secrets: image_pull_secrets:
- dockerconfigjson - dockerconfigjson
kind: pipeline kind: pipeline
@ -4595,9 +4597,7 @@ volumes:
--- ---
clone: clone:
retries: 3 retries: 3
depends_on: depends_on: []
- main-test-backend
- main-test-frontend
image_pull_secrets: image_pull_secrets:
- dockerconfigjson - dockerconfigjson
kind: pipeline kind: pipeline
@ -6941,6 +6941,6 @@ kind: secret
name: github_token name: github_token
--- ---
kind: signature kind: signature
hmac: d6bfbf6fa92bf3ed68b72ed6315e926aeec8b50e08a44cff1e40f0561007a0fd hmac: e819db5b752a99280213ed98baa12c0c27c87521c826580a8067c957579db98f
... ...

View File

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