Skip to content

Commit 8f19ead

Browse files
applying feedback
1 parent 16e90f7 commit 8f19ead

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

cerebrium/deployments/ci-cd.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ description: "Automate Cerebrium deployments using GitHub Actions"
55

66
Configure a Continuous Integration or Continuous Deployment system (CI/CD) to automatically deploy a new version of an app to production/development when a branch is pushed or workflow triggered.
77

8-
This guide sets up a CI/CD system using GitHub Actions and Cerebriums' Service Accounts.
8+
This guide sets up a CI/CD pipeline using GitHub Actions and Cerebriums' Service Accounts.
99

10-
> Maintaining **separate development and production apps** in separate projects is recommended, so that changes can be safely tested before going live.
10+
<Note> Maintaining **separate development and production apps** in separate projects is recommended, so that changes can be safely tested before going live.</Note>
1111

1212
### 1. Authenticating to Cerebrium
1313

@@ -41,7 +41,7 @@ GitHub Actions use workflow files located in the `.github/workflows/` directory
4141
2. Within that directory, create a new file named `cerebrium-deploy.yml`
4242
3. Paste the following YAML into the file:
4343

44-
```
44+
```yaml
4545
name: Cerebrium Deployment
4646
on:
4747
push:
@@ -83,9 +83,9 @@ jobs:
8383

8484
```
8585

86-
Once committed, this workflow will automatically :
86+
Once committed, this workflow will automatically:
8787

88-
- Deploy a production application on every push to master
89-
- Deploy a development app on pull requests to master or development it.
88+
- Deploy a production application on every push to master.
89+
- Deploy a development app on pull requests to master or development branches.
9090

91-
You can monitor workflow runs in the “Actions” tab of your repository.
91+
Monitor workflow runs in the “Actions” tab of the repository on GitHub.

0 commit comments

Comments
 (0)