Skip to content

msfred/github-actions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Actions Samples

CI - Continuous Integration

With continuous integration, each time code is committed, changes are validated and merged to the main branch, and the code is packaged into a build artifact.

The Continuous Integration Workflow is an example of a GitHub Workflow that automatically builds, validates, and generates a build artifact for the project whenever a commit is made to the main or a pull request branch.

CI/CD - Continuous Integration & Continuous Delivery

When teams implement both continuous integration and continuous delivery (CI/CD), the build and deployment phases are automated. Code remains ready for production at any time. All teams must do is manually trigger the transition from develop to deploy—making the automated build artifact available for automatic deployment—which can be as simple as pressing a button.

The Continuous Delivery Workflow is an example of a GitHub Workflow that automatically performs the CI step and then deploys the build to a development environment. A manual step is required to advance the deployment to each subsequent environment (QA, UAT, STAGE, PRODUCTION).

Continuous Deployment

Continuous deployment takes this one step further. When all testing for each environment (unit / integration / user acceptance) can be automated, then manual approval steps can be removed and the workflow of code from commit to production deployment can be fully automated.

Hello

About

Sample repository for demonstrating the features of github actions.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published