├── .github ├── dependabot.yml └── workflows │ ├── jekyll-deploy.yml │ └── jekyll-test.yml ├── README.md ├── action.yml ├── deployer ├── Dockerfile └── entrypoint.rb └── tests ├── .gitignore ├── 404.html ├── CNAME ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── _posts └── 2020-08-26-welcome-to-jekyll.markdown ├── about.markdown └── index.markdown /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/.github/workflows/jekyll-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/.github/workflows/jekyll-test.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/action.yml -------------------------------------------------------------------------------- /deployer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/deployer/Dockerfile -------------------------------------------------------------------------------- /deployer/entrypoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/deployer/entrypoint.rb -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/tests/404.html -------------------------------------------------------------------------------- /tests/CNAME: -------------------------------------------------------------------------------- 1 | test.example.org 2 | -------------------------------------------------------------------------------- /tests/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/tests/Gemfile -------------------------------------------------------------------------------- /tests/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/tests/Gemfile.lock -------------------------------------------------------------------------------- /tests/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/tests/_config.yml -------------------------------------------------------------------------------- /tests/_posts/2020-08-26-welcome-to-jekyll.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/tests/_posts/2020-08-26-welcome-to-jekyll.markdown -------------------------------------------------------------------------------- /tests/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/tests/about.markdown -------------------------------------------------------------------------------- /tests/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidS/jekyll-deploy/HEAD/tests/index.markdown --------------------------------------------------------------------------------