I’m wondering how can I automate app preview and deployment from GitHub Actions with Monday Code.
Has anyone found a practical way to:
-
Preview deploy PRs on each push to test-drive the app before merging the branch into
master
-
Automatically deploy and promote to production once the tests etc have passed and the PR is merged into
master
?
I don’t understand if an app can have multiple versions at once, and if it’s possible to promote a version from Draft to production programmatically.
If not, what is the solution? Have a second, separate development app and deploy PRs to it while deploying merges to master
to a separate “real”/production app? And then manually promote from Draft to production via the Monday UI?