📝 Edit page
➕ Add page
GitHub Actions
External links around GH Actions, from basic to advanced usage
Topics
Pages
Content
Key links
- 🏠 Homepage: https://github.com/features/actions
- 📗 Docs: https://docs.github.com/en/actions
Uncategorized Links
-
Awesome actions
- A curated list of awesome actions to use on GitHub
-
GitHub Actions series
- My tutorials on GH Actions as a blog post series
GitHub Actions lets you run code in the cloud for free when triggered.
Mostly it is triggered on a commit and so can be useful to do quality control - run checks and build the site.
You can extend it to deploy your project too. Such as publish a built package to a package registry when a tag is pushed. Or build a static site and commit it to gh-pages
branch to be served with GitHub Paged (works great for Vue, React, Jekyll, and other static site generators or SPAS.
Related topics
- GitHub Pages - host the static site output that your build creates.
Related projects
- GitHub Actions recipes in my cookbook. Copy and paste examples to run your Jekyll, Node or Python CI for example.
- GitHub Actions cheatsheet. For a reference on workflow syntax, recommended fields and what the fields mean.
- Workflow builder