├── .github └── workflows │ ├── demo-multiple-jobs-with-environments.yml │ ├── demo1.yml │ ├── demo2.yml │ ├── demo3.yml │ ├── demo4.yml │ ├── demo5.yml │ ├── demo6-pr.yml │ ├── demo6-push-to-main.yml │ ├── demo7-pr.yml │ ├── demo7-push-to-main.yml │ └── demo8.yml ├── .gitignore ├── README.md └── mywebapp ├── Controllers └── HomeController.cs ├── Models └── ErrorViewModel.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── Views ├── Home │ ├── Index.cshtml │ └── Privacy.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── mywebapp.csproj └── wwwroot ├── css └── site.css ├── favicon.ico ├── js └── site.js └── lib ├── bootstrap ├── LICENSE └── dist │ ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ └── bootstrap.min.js.map ├── jquery-validation-unobtrusive ├── LICENSE.txt ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── LICENSE.md └── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js └── jquery ├── LICENSE.txt └── dist ├── jquery.js ├── jquery.min.js └── jquery.min.map /.github/workflows/demo-multiple-jobs-with-environments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/.github/workflows/demo-multiple-jobs-with-environments.yml -------------------------------------------------------------------------------- /.github/workflows/demo1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/.github/workflows/demo1.yml -------------------------------------------------------------------------------- /.github/workflows/demo2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/.github/workflows/demo2.yml -------------------------------------------------------------------------------- /.github/workflows/demo3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/.github/workflows/demo3.yml -------------------------------------------------------------------------------- /.github/workflows/demo4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/.github/workflows/demo4.yml -------------------------------------------------------------------------------- /.github/workflows/demo5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/.github/workflows/demo5.yml -------------------------------------------------------------------------------- /.github/workflows/demo6-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/.github/workflows/demo6-pr.yml -------------------------------------------------------------------------------- /.github/workflows/demo6-push-to-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/.github/workflows/demo6-push-to-main.yml -------------------------------------------------------------------------------- /.github/workflows/demo7-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/.github/workflows/demo7-pr.yml -------------------------------------------------------------------------------- /.github/workflows/demo7-push-to-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/.github/workflows/demo7-push-to-main.yml -------------------------------------------------------------------------------- /.github/workflows/demo8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/.github/workflows/demo8.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/README.md -------------------------------------------------------------------------------- /mywebapp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /mywebapp/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /mywebapp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/Program.cs -------------------------------------------------------------------------------- /mywebapp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/Properties/launchSettings.json -------------------------------------------------------------------------------- /mywebapp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/Startup.cs -------------------------------------------------------------------------------- /mywebapp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /mywebapp/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /mywebapp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /mywebapp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /mywebapp/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /mywebapp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /mywebapp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /mywebapp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/appsettings.Development.json -------------------------------------------------------------------------------- /mywebapp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/appsettings.json -------------------------------------------------------------------------------- /mywebapp/mywebapp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/mywebapp.csproj -------------------------------------------------------------------------------- /mywebapp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/css/site.css -------------------------------------------------------------------------------- /mywebapp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /mywebapp/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/js/site.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /mywebapp/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthebrit/my-github-actions-demos/HEAD/mywebapp/wwwroot/lib/jquery/dist/jquery.min.map --------------------------------------------------------------------------------