├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── main.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── action.yaml ├── entrypoint.sh └── test-site ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── config.toml ├── content ├── about.md └── posts │ ├── _index.md │ ├── some-post.md │ └── syntax-highlighting.md ├── sass ├── _elements.sass ├── _mixins.sass ├── _vars.sass ├── fonts.scss └── style.sass ├── screenshot.png ├── static ├── favicon.ico └── fonts │ ├── DidactGothic-Regular.otf │ └── LICENSE ├── templates ├── 404.html ├── base.html ├── index.html ├── macros.html ├── page.html ├── section.html └── tags │ ├── list.html │ └── single.html ├── theme.toml └── upstream ├── LICENSE ├── favicon.ico └── sass ├── _elements.sass ├── _mixins.sass ├── _vars.sass └── style.sass /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: shalzz 4 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/action.yaml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /test-site/.gitignore: -------------------------------------------------------------------------------- 1 | public 2 | -------------------------------------------------------------------------------- /test-site/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/.travis.yml -------------------------------------------------------------------------------- /test-site/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/LICENSE -------------------------------------------------------------------------------- /test-site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/README.md -------------------------------------------------------------------------------- /test-site/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/config.toml -------------------------------------------------------------------------------- /test-site/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/content/about.md -------------------------------------------------------------------------------- /test-site/content/posts/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Posts" 3 | +++ 4 | -------------------------------------------------------------------------------- /test-site/content/posts/some-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/content/posts/some-post.md -------------------------------------------------------------------------------- /test-site/content/posts/syntax-highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/content/posts/syntax-highlighting.md -------------------------------------------------------------------------------- /test-site/sass/_elements.sass: -------------------------------------------------------------------------------- 1 | ../upstream/sass/_elements.sass -------------------------------------------------------------------------------- /test-site/sass/_mixins.sass: -------------------------------------------------------------------------------- 1 | ../upstream/sass/_mixins.sass -------------------------------------------------------------------------------- /test-site/sass/_vars.sass: -------------------------------------------------------------------------------- 1 | ../upstream/sass/_vars.sass -------------------------------------------------------------------------------- /test-site/sass/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/sass/fonts.scss -------------------------------------------------------------------------------- /test-site/sass/style.sass: -------------------------------------------------------------------------------- 1 | ../upstream/sass/style.sass -------------------------------------------------------------------------------- /test-site/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/screenshot.png -------------------------------------------------------------------------------- /test-site/static/favicon.ico: -------------------------------------------------------------------------------- 1 | ../upstream/favicon.ico -------------------------------------------------------------------------------- /test-site/static/fonts/DidactGothic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/static/fonts/DidactGothic-Regular.otf -------------------------------------------------------------------------------- /test-site/static/fonts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/static/fonts/LICENSE -------------------------------------------------------------------------------- /test-site/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/templates/404.html -------------------------------------------------------------------------------- /test-site/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/templates/base.html -------------------------------------------------------------------------------- /test-site/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/templates/index.html -------------------------------------------------------------------------------- /test-site/templates/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/templates/macros.html -------------------------------------------------------------------------------- /test-site/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/templates/page.html -------------------------------------------------------------------------------- /test-site/templates/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/templates/section.html -------------------------------------------------------------------------------- /test-site/templates/tags/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/templates/tags/list.html -------------------------------------------------------------------------------- /test-site/templates/tags/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/templates/tags/single.html -------------------------------------------------------------------------------- /test-site/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/theme.toml -------------------------------------------------------------------------------- /test-site/upstream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/upstream/LICENSE -------------------------------------------------------------------------------- /test-site/upstream/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/upstream/favicon.ico -------------------------------------------------------------------------------- /test-site/upstream/sass/_elements.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/upstream/sass/_elements.sass -------------------------------------------------------------------------------- /test-site/upstream/sass/_mixins.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/upstream/sass/_mixins.sass -------------------------------------------------------------------------------- /test-site/upstream/sass/_vars.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/upstream/sass/_vars.sass -------------------------------------------------------------------------------- /test-site/upstream/sass/style.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzz/zola-deploy-action/HEAD/test-site/upstream/sass/style.sass --------------------------------------------------------------------------------