Skip to content

Commit e425f88

Browse files
committed
fix vale
1 parent 9640749 commit e425f88

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

sources/academy/platform/deploying_your_code/deploying.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: How to deploy your Actor
3-
description: Push local code to the platform, or create a new Actor on the console and integrate it with a Git repo to optionally automatically rebuild any new changes.
3+
description: Push local code to the platform, or create a new Actor on the console and integrate it with a Git repository to optionally automatically rebuild any new changes.
44
sidebar_position: 5
55
slug: /deploying-your-code/deploying
66
---
77

8-
**Push local code to the platform, or create a new Actor on the console and integrate it with a Git repo to optionally automatically rebuild any new changes.**
8+
**Push local code to the platform, or create a new Actor on the console and integrate it with a Git repository to optionally automatically rebuild any new changes.**
99

1010
---
1111

@@ -15,7 +15,7 @@ Once you've **actorified** your code, there are two ways to deploy it to the Api
1515

1616
Before we deploy our project onto the Apify platform, let's ensure that we've pushed the changes we made in the last 3 lessons into our remote GitHub repository.
1717

18-
> The benefit of using this method is that any time you push to the Git repo, the code on the platform is also updated and the Actor is automatically rebuilt. Also, you don't have to use a GitHub repository - you can use GitLab or any other service you'd like.
18+
> The benefit of using this method is that any time you push to the Git repository, the code on the platform is also updated and the Actor is automatically rebuilt. Also, you don't have to use a GitHub repository - you can use GitLab or any other service you'd like.
1919
2020
### Creating the Actor
2121

@@ -31,17 +31,17 @@ In the **Source** tab on the new Actor's page, we'll click the dropdown menu und
3131

3232
Now we'll paste the link to our GitHub repository into the **Git URL** text field and click **Save**.
3333

34-
### Adding the webhook to the repository {#adding-repo-webhook}
34+
### Adding the webhook to the repository {#adding-repository-webhook}
3535

3636
The final step is to click on **API** in the top right corner of our Actor's page:
3737

3838
![API button](../expert_scraping_with_apify/images/api-button.jpg)
3939

4040
And scroll through all of the links until we find the **Build Actor** API endpoint. Now we'll copy this endpoint's URL, head back over to our GitHub repository and navigate to **Settings > Webhooks > Add webhook**. The final thing to do is to paste the URL and save the webhook.
4141

42-
![Adding a webhook to your GitHub repo](../../../platform/actors/development/deployment/images/ci-github-integration.png)
42+
![Adding a webhook to your GitHub repository](../../../platform/actors/development/deployment/images/ci-github-integration.png)
4343

44-
That's it! The Actor should now pull its source code from the repo and automatically build.
44+
That's it! The Actor should now pull its source code from the repository and automatically build.
4545

4646
## Without a GitHub repository (using the Apify CLI) {#with-apify-cli}
4747

sources/academy/platform/deploying_your_code/docker_file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: How to create an Actor dockerfile
2+
title: How to create an Actor Dockerfile
33
description: Understand how to write a Dockerfile (Docker image blueprint) for your project so that it can be run within a Docker container on the Apify platform.
44
sidebar_position: 4
55
slug: /deploying-your-code/docker-file

0 commit comments

Comments
 (0)