Skip to content

Commit 556926a

Browse files
committed
Update: v0.1.5
1 parent 2c433de commit 556926a

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ inputs:
2222
located in the root of your repository.
2323
default: 'index.yml'
2424
required: false
25+
templates_dir:
26+
description: >
27+
Base directory to lookup custom jinja2 templates in (default: ".").
28+
default: "."
29+
required: false
2530

2631
runs:
2732
using: "composite"
@@ -31,7 +36,7 @@ runs:
3136
python-version: 3.8
3237
- run: pip install webifier
3338
shell: bash
34-
- run: webify --repo_full_name "${{ inputs.repo }}" --baseurl "${{ inputs.baseurl }}" --index ${{ inputs.index }} --output="."
39+
- run: webify --repo_full_name "${{ inputs.repo }}" --baseurl "${{ inputs.baseurl }}" --index ${{ inputs.index }} --output="." --templates-dir="${{ inputs.templates_dir }}"
3540
shell: bash
3641

3742

webifier/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = 'v0.1.4'
1+
__version__ = 'v0.1.5'

webifier/jekyll/_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
{% else %}
2525
{{ site.data.index.footer }}
2626
{% endif %}
27-
© Powered by <a class="link-primary" href="https://webifier.github.io">Webifier</a>
27+
© Powered by <a class="link-primary" href="https://github.com/webifier/build">Webifier</a>
2828
</div>
2929
</footer>

0 commit comments

Comments
 (0)