Skip to content

Commit ad727cb

Browse files
committed
fix: Fix comments
1 parent c6fd967 commit ad727cb

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/snippets/github-actions-with-prebuilt-docker-images-for-do.mdx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ To use prebuilt container images, navigate to the **DigitalOcean Container Regis
143143
Add 3 new github secrets:
144144
- `DO_USERNAME` - the email of your DigitalOcean account;
145145
- `DO_WEB_STAGING_APP_NAME` - the name of the web app;
146-
- `DO_API_STAGING_APP_NAME` - the name of the API app.
146+
- `DO_API_STAGING_APP_NAME` - the name of the API app.
147+
147148

148149
![Create new github secrets for DO container registry](/images/do-registry-github-secrets.png)
149150

@@ -254,9 +255,9 @@ To use prebuilt container images, navigate to the **DigitalOcean Container Regis
254255
</Step>
255256
256257
<Step title="Update deploy Github actions for WEB and API">
257-
Replace the old deployment action with the new one and remove old two actions: `Build and Push Staging API Image to DigitalOcean` and `Build and Push Staging Web Image to DigitalOcean`.
258+
Replace the old deployment action with the new one and **remove** old two actions: `.github/workflows/api-staging-build-and-push-image.yml` and `.github/workflows/web-staging-build-and-push-image.yml`.
258259

259-
```yaml New API deployment github action expandable
260+
```yaml .github/workflows/api-staging.yml
260261
name: "Staging application API deployment"
261262
262263
on:
@@ -337,7 +338,7 @@ To use prebuilt container images, navigate to the **DigitalOcean Container Regis
337338
app_name: ${{ secrets.DO_API_STAGING_APP_NAME }}
338339
```
339340

340-
```yaml New WEB deployment github action expandable
341+
```yaml .github/workflows/web-staging.yml
341342
name: "Staging application Web deployment"
342343
343344
on:

0 commit comments

Comments
 (0)