├── .dockerignore ├── .github ├── actions │ ├── publish │ │ └── action.yml │ └── test │ │ └── action.yml └── workflows │ └── test.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── entrypoint.sh ├── sample_site ├── CNAME-SAMPLE ├── _config.yml ├── _config_basic.yml ├── _config_build_dir.yml ├── _config_build_only.yml ├── _config_jekyll_bundler.yml ├── _config_jekyll_bundler_lock.yml ├── _config_jekyll_gem_src.yml ├── _config_jekyll_src.yml ├── _config_keep_history.yml ├── _config_multiple_versions.yml ├── _data │ └── menu.yml ├── _includes │ ├── back_link.html │ ├── goat_counter.html │ ├── head.html │ ├── menu_item.html │ └── post_list.html ├── _layouts │ ├── archive.html │ ├── default.html │ ├── home.html │ ├── page.html │ └── post.html ├── _plugins │ └── bundle_version.rb ├── _posts │ ├── 2020-07-06-strange-post.md │ ├── 2020-07-07-overview-post.md │ ├── 2020-07-08-language-tests.md │ ├── 2020-07-08-very-very-very-long-title-and-very-very-very-short-content.md │ ├── 2020-07-09-post-example-with-headings-and-toc.md │ └── 2020-07-09-post-example-with-hr.md ├── _sass │ └── no-style-please.scss ├── _screenshots │ ├── featured-image.png │ ├── lighthouse-report.png │ └── page-speed-insights-report.png ├── about.md ├── archive.md ├── assets │ └── css │ │ └── main.scss ├── index.adoc └── logo.png ├── sample_site_gemfiles ├── .ruby-version ├── Gemfile └── Gemfile.lock └── tests └── e2e ├── cypress.json ├── cypress └── integration │ ├── basic │ └── spec.js │ ├── jekyll_build_dir │ └── spec.js │ ├── jekyll_bundler │ └── spec.js │ ├── jekyll_bundler_lock │ └── spec.js │ ├── jekyll_gem_src │ └── spec.js │ ├── jekyll_src │ └── spec.js │ ├── keep_history │ └── spec.js │ └── multiple │ └── spec.js ├── package-lock.json └── package.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/actions/publish/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/.github/actions/publish/action.yml -------------------------------------------------------------------------------- /.github/actions/test/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/.github/actions/test/action.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /sample_site/CNAME-SAMPLE: -------------------------------------------------------------------------------- 1 | jekky-action.com 2 | -------------------------------------------------------------------------------- /sample_site/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_config.yml -------------------------------------------------------------------------------- /sample_site/_config_basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_config_basic.yml -------------------------------------------------------------------------------- /sample_site/_config_build_dir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_config_build_dir.yml -------------------------------------------------------------------------------- /sample_site/_config_build_only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_config_build_only.yml -------------------------------------------------------------------------------- /sample_site/_config_jekyll_bundler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_config_jekyll_bundler.yml -------------------------------------------------------------------------------- /sample_site/_config_jekyll_bundler_lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_config_jekyll_bundler_lock.yml -------------------------------------------------------------------------------- /sample_site/_config_jekyll_gem_src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_config_jekyll_gem_src.yml -------------------------------------------------------------------------------- /sample_site/_config_jekyll_src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_config_jekyll_src.yml -------------------------------------------------------------------------------- /sample_site/_config_keep_history.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_config_keep_history.yml -------------------------------------------------------------------------------- /sample_site/_config_multiple_versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_config_multiple_versions.yml -------------------------------------------------------------------------------- /sample_site/_data/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_data/menu.yml -------------------------------------------------------------------------------- /sample_site/_includes/back_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_includes/back_link.html -------------------------------------------------------------------------------- /sample_site/_includes/goat_counter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_includes/goat_counter.html -------------------------------------------------------------------------------- /sample_site/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_includes/head.html -------------------------------------------------------------------------------- /sample_site/_includes/menu_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_includes/menu_item.html -------------------------------------------------------------------------------- /sample_site/_includes/post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_includes/post_list.html -------------------------------------------------------------------------------- /sample_site/_layouts/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_layouts/archive.html -------------------------------------------------------------------------------- /sample_site/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_layouts/default.html -------------------------------------------------------------------------------- /sample_site/_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_layouts/home.html -------------------------------------------------------------------------------- /sample_site/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_layouts/page.html -------------------------------------------------------------------------------- /sample_site/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_layouts/post.html -------------------------------------------------------------------------------- /sample_site/_plugins/bundle_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_plugins/bundle_version.rb -------------------------------------------------------------------------------- /sample_site/_posts/2020-07-06-strange-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_posts/2020-07-06-strange-post.md -------------------------------------------------------------------------------- /sample_site/_posts/2020-07-07-overview-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_posts/2020-07-07-overview-post.md -------------------------------------------------------------------------------- /sample_site/_posts/2020-07-08-language-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_posts/2020-07-08-language-tests.md -------------------------------------------------------------------------------- /sample_site/_posts/2020-07-08-very-very-very-long-title-and-very-very-very-short-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_posts/2020-07-08-very-very-very-long-title-and-very-very-very-short-content.md -------------------------------------------------------------------------------- /sample_site/_posts/2020-07-09-post-example-with-headings-and-toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_posts/2020-07-09-post-example-with-headings-and-toc.md -------------------------------------------------------------------------------- /sample_site/_posts/2020-07-09-post-example-with-hr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_posts/2020-07-09-post-example-with-hr.md -------------------------------------------------------------------------------- /sample_site/_sass/no-style-please.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_sass/no-style-please.scss -------------------------------------------------------------------------------- /sample_site/_screenshots/featured-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_screenshots/featured-image.png -------------------------------------------------------------------------------- /sample_site/_screenshots/lighthouse-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_screenshots/lighthouse-report.png -------------------------------------------------------------------------------- /sample_site/_screenshots/page-speed-insights-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/_screenshots/page-speed-insights-report.png -------------------------------------------------------------------------------- /sample_site/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/about.md -------------------------------------------------------------------------------- /sample_site/archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/archive.md -------------------------------------------------------------------------------- /sample_site/assets/css/main.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "no-style-please"; -------------------------------------------------------------------------------- /sample_site/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/index.adoc -------------------------------------------------------------------------------- /sample_site/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site/logo.png -------------------------------------------------------------------------------- /sample_site_gemfiles/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.6 2 | -------------------------------------------------------------------------------- /sample_site_gemfiles/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site_gemfiles/Gemfile -------------------------------------------------------------------------------- /sample_site_gemfiles/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/sample_site_gemfiles/Gemfile.lock -------------------------------------------------------------------------------- /tests/e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/tests/e2e/cypress.json -------------------------------------------------------------------------------- /tests/e2e/cypress/integration/basic/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/tests/e2e/cypress/integration/basic/spec.js -------------------------------------------------------------------------------- /tests/e2e/cypress/integration/jekyll_build_dir/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/tests/e2e/cypress/integration/jekyll_build_dir/spec.js -------------------------------------------------------------------------------- /tests/e2e/cypress/integration/jekyll_bundler/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/tests/e2e/cypress/integration/jekyll_bundler/spec.js -------------------------------------------------------------------------------- /tests/e2e/cypress/integration/jekyll_bundler_lock/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/tests/e2e/cypress/integration/jekyll_bundler_lock/spec.js -------------------------------------------------------------------------------- /tests/e2e/cypress/integration/jekyll_gem_src/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/tests/e2e/cypress/integration/jekyll_gem_src/spec.js -------------------------------------------------------------------------------- /tests/e2e/cypress/integration/jekyll_src/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/tests/e2e/cypress/integration/jekyll_src/spec.js -------------------------------------------------------------------------------- /tests/e2e/cypress/integration/keep_history/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/tests/e2e/cypress/integration/keep_history/spec.js -------------------------------------------------------------------------------- /tests/e2e/cypress/integration/multiple/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/tests/e2e/cypress/integration/multiple/spec.js -------------------------------------------------------------------------------- /tests/e2e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/tests/e2e/package-lock.json -------------------------------------------------------------------------------- /tests/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/jekyll-action/HEAD/tests/e2e/package.json --------------------------------------------------------------------------------