Skip to content

Commit 6b7173c

Browse files
Replace GitHub actions with GitHub Actions
1 parent 5ec0749 commit 6b7173c

File tree

17 files changed

+21
-21
lines changed

17 files changed

+21
-21
lines changed

.github/workflows/Vale-Linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
with:
1212
fail_on_error: true
1313
env:
14-
# Required, set by GitHub actions automatically:
14+
# Required, set by GitHub Actions automatically:
1515
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret
1616
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

10/umbraco-cms/tutorials/creating-and-distributing-a-package.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,15 +399,15 @@ You can edit all of these defaults, and also specify older versions of your pack
399399

400400
So at this point we can work on our package locally, build a new version within seconds by running the pack command and then deploy it to Our using the push command.
401401

402-
Not easy enough for you? Let's try automating this entire thing with GitHub actions then.
402+
Not easy enough for you? Let's try automating this entire thing with GitHub Actions then.
403403

404404
## Deploy your package using GitHub Actions
405405

406406
If you think back to the beginning when we set up our sites using the Package Templates you may remember that by default you get a GitHub action installed as well.
407407

408408
If you check out the `~/.github/workflows` folder in your solution, you will see there is a readme file and a build.yml file.
409409

410-
The build.yml file is used by GitHub actions, which will perform some tasks for you when certain criteria are met. If you haven't worked with continuous integration and deployment (CI/CD) before, then this may seem like magic - but don't worry we will run through the commands.
410+
The build.yml file is used by GitHub Actions, which will perform some tasks for you when certain criteria are met. If you haven't worked with continuous integration and deployment (CI/CD) before, then this may seem like magic - but don't worry we will run through the commands.
411411

412412
The build.yml file contains several things, let's have a quick overview:
413413

10/umbraco-deploy/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* [Getting started](getting-started/get-started-with-deploy.md)
2121
* [CI/CD Build and Deployment Pipeline](getting-started/cicd-pipeline/README.md)
2222
* [Azure DevOps](getting-started/cicd-pipeline/ci-cd-azure-dev-ops.md)
23-
* [GitHub actions](getting-started/cicd-pipeline/ci-cd-github-actions.md)
23+
* [GitHub Actions](getting-started/cicd-pipeline/ci-cd-github-actions.md)
2424
* [Streamlining Local Development](getting-started/streamlining-local-development.md)
2525
* [Configuration](getting-started/deploy-settings.md)
2626

10/umbraco-deploy/getting-started/cicd-pipeline/ci-cd-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Steps and examples on how to setup a build and deployment pipeline for Umbraco Deploy using GitHub Actions.
33
---
44

5-
# GitHub actions
5+
# GitHub Actions
66

77
{% hint style="info" %}
88
In this example we will show how you can set up a CI/CD build server using GitHub Actions in Azure Web Apps.

10/umbraco-deploy/installation/install-configure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Here we will cover how to install and set up Umbraco Deploy on a new website.
2424

2525
**Set up the Git repository and Umbraco project**
2626

27-
The first step to get Umbraco Deploy up and running is to set up a GitHub repository. This will be where source code is stored, and, following the GitHub actions example, act as our environment where we will set up a CI/CD pipeline.
27+
The first step to get Umbraco Deploy up and running is to set up a GitHub repository. This will be where source code is stored, and, following the GitHub Actions example, act as our environment where we will set up a CI/CD pipeline.
2828

2929
1. Using the Visual Studio template, set up a GitHub repository with a .gitignore file.
3030
2. Clone down the repository to your local machine.

13/umbraco-cms/tutorials/creating-and-distributing-a-package.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,15 +399,15 @@ You can edit all of these defaults, and also specify older versions of your pack
399399

400400
So at this point we can work on our package locally, build a new version within seconds by running the pack command and then deploy it to Our using the push command.
401401

402-
Not easy enough for you? Let's try automating this entire thing with GitHub actions then.
402+
Not easy enough for you? Let's try automating this entire thing with GitHub Actions then.
403403

404404
## Deploy your package using GitHub Actions
405405

406406
If you think back to the beginning when we set up our sites using the Package Templates you may remember that by default you get a GitHub action installed as well.
407407

408408
If you check out the `~/.github/workflows` folder in your solution, you will see there is a readme file and a build.yml file.
409409

410-
The build.yml file is used by GitHub actions, which will perform some tasks for you when certain criteria are met. If you haven't worked with continuous integration and deployment (CI/CD) before, then this may seem like magic - but don't worry we will run through the commands.
410+
The build.yml file is used by GitHub Actions, which will perform some tasks for you when certain criteria are met. If you haven't worked with continuous integration and deployment (CI/CD) before, then this may seem like magic - but don't worry we will run through the commands.
411411

412412
The build.yml file contains several things, let's have a quick overview:
413413

13/umbraco-deploy/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* [Getting started](getting-started/get-started-with-deploy.md)
2121
* [CI/CD Build and Deployment Pipeline](getting-started/cicd-pipeline/README.md)
2222
* [Azure DevOps](getting-started/cicd-pipeline/ci-cd-azure-dev-ops.md)
23-
* [GitHub actions](getting-started/cicd-pipeline/ci-cd-github-actions.md)
23+
* [GitHub Actions](getting-started/cicd-pipeline/ci-cd-github-actions.md)
2424
* [Streamlining Local Development](getting-started/streamlining-local-development.md)
2525
* [Configuration](getting-started/deploy-settings.md)
2626

13/umbraco-deploy/getting-started/cicd-pipeline/ci-cd-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: >-
44
Deploy using GitHub Actions.
55
---
66

7-
# GitHub actions
7+
# GitHub Actions
88

99
{% hint style="info" %}
1010
In this example we will show how you can set up a CI/CD build server using GitHub Actions in Azure Web Apps.

13/umbraco-deploy/installation/install-configure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Here we will cover how to install and set up Umbraco Deploy on a new website.
2424

2525
**Set up the Git repository and Umbraco project**
2626

27-
The first step to get Umbraco Deploy up and running is to set up a GitHub repository. This will be where source code is stored, and, following the GitHub actions example, act as our environment where we will set up a CI/CD pipeline.
27+
The first step to get Umbraco Deploy up and running is to set up a GitHub repository. This will be where source code is stored, and, following the GitHub Actions example, act as our environment where we will set up a CI/CD pipeline.
2828

2929
1. Using the Visual Studio template, set up a GitHub repository with a .gitignore file.
3030
2. Clone down the repository to your local machine.

14/umbraco-cms/tutorials/creating-and-distributing-a-package.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,15 +398,15 @@ You can edit all of these defaults, and also specify older versions of your pack
398398

399399
So at this point we can work on our package locally, build a new version within seconds by running the pack command and then deploy it to Our using the push command.
400400

401-
Not easy enough for you? Let's try automating this entire thing with GitHub actions then.
401+
Not easy enough for you? Let's try automating this entire thing with GitHub Actions then.
402402

403403
## Deploy your package using GitHub Actions
404404

405405
If you think back to the beginning when we set up our sites using the Package Templates you may remember that by default you get a GitHub action installed as well.
406406

407407
If you check out the `~/.github/workflows` folder in your solution, you will see there is a readme file and a build.yml file.
408408

409-
The build.yml file is used by GitHub actions, which will perform some tasks for you when certain criteria are met. If you haven't worked with continuous integration and deployment (CI/CD) before, then this may seem like magic - but don't worry we will run through the commands.
409+
The build.yml file is used by GitHub Actions, which will perform some tasks for you when certain criteria are met. If you haven't worked with continuous integration and deployment (CI/CD) before, then this may seem like magic - but don't worry we will run through the commands.
410410

411411
The build.yml file contains several things, let's have a quick overview:
412412

0 commit comments

Comments
 (0)