Skip to content

Commit 395e4c5

Browse files
committed
Update recipes/ci-cd/github-actions/index.md
1 parent e247b8c commit 395e4c5

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

recipes/ci-cd/github-actions/index.md

+3-15
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,15 @@ logo: githubactions
55
# GitHub Actions
66

77

8-
## About
9-
10-
This section covers how to use GitHub Actions in a CI/CD flow such as you run automated tests, deploy and publish your repo. All running for free in the cloud whenever the workflow is triggered such as with a push or merged Pull Request.
11-
12-
To use GH Actions, you must create a workflow YAML file with appropriate fields set including triggers and steps. You can write shell commands as _steps_ and you can use use actions from the GH Marketplace to help you setup your environment (install a language and packages) and perform test and deploy steps, without you having to write a lot of code.
13-
14-
158
## How to get started
169

17-
Most of the content in this recipe section is around Workflows:
10+
For options and syntax around workflow files, see my [GitHub Actions](https://michaelcurrin.github.io/dev-cheatsheets/ci-cd/github-actions/) guide.
11+
12+
Here are some places to start to get into workflow file samples.
1813

1914
- [Basic generic workflow](workflows/basic.md)
2015
- A sample which covers the minimum fields
2116
- [Basic node workflow](workflows/node/basic.md)
2217
- Simple sample of running a Node.js app pipeline.
2318
- [Workflows](workflows/) section
2419
- See sample workflows across programming languages.
25-
26-
Here are some other areas to start with:
27-
28-
- Workflow syntax and samples / use-cases around them
29-
- [Jobs](jobs.md)
30-
- [Triggers](triggers.md)
31-
- [Resources](resources.md) for external links such as to docs, to help you get into how Actions work and the syntax

0 commit comments

Comments
 (0)