You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 30, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: docs/concepts/deploy.yml.md
+12
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,18 @@ envs:
50
50
- integration-test
51
51
production_environment: true
52
52
```
53
+
54
+
### Auto Deploy
55
+
56
+
Gitploy provides not only manual deployment but also auto-deployment. Gitploy is listening for the push event dispatched from GitHub and triggers to deploy automatically when the ref is matched with the `auto_deploy_on` of the configuration file.
57
+
58
+
```yaml
59
+
envs:
60
+
- name: production
61
+
auto_deploy_on: refs/heads/main
62
+
production_environment: true
63
+
```
64
+
53
65
### Review
54
66
55
67
Gitploy provides the review process. You can list up to users on the configuration file. You can check the [document](./review.md) for the detail.
Copy file name to clipboardExpand all lines: docs/concepts/deployment.md
-4
Original file line number
Diff line number
Diff line change
@@ -12,10 +12,6 @@ Figure) Deploy
12
12
13
13

14
14
15
-
## Auto Deploy
16
-
17
-
Gitploy provides not only manual deployment but also auto-deployment. Gitploy is listening for the push event dispatched from GitHub and trigger to deploy automatically when the ref is matched with the `auto_deploy_on` of the configuration file.
18
-
19
15
## Rollback
20
16
21
17
Rollback is the best way to recover while you fix the problems, and Gitploy supports the rollback. You can choose one of the deployed references for the environment to roll back.
0 commit comments