Skip to content

Commit

Permalink
Update: v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vahidzee committed Sep 27, 2021
1 parent 2c433de commit 556926a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ inputs:
located in the root of your repository.
default: 'index.yml'
required: false
templates_dir:
description: >
Base directory to lookup custom jinja2 templates in (default: ".").
default: "."
required: false

runs:
using: "composite"
Expand All @@ -31,7 +36,7 @@ runs:
python-version: 3.8
- run: pip install webifier
shell: bash
- run: webify --repo_full_name "${{ inputs.repo }}" --baseurl "${{ inputs.baseurl }}" --index ${{ inputs.index }} --output="."
- run: webify --repo_full_name "${{ inputs.repo }}" --baseurl "${{ inputs.baseurl }}" --index ${{ inputs.index }} --output="." --templates-dir="${{ inputs.templates_dir }}"
shell: bash


2 changes: 1 addition & 1 deletion webifier/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = 'v0.1.4'
__version__ = 'v0.1.5'
2 changes: 1 addition & 1 deletion webifier/jekyll/_includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
{% else %}
{{ site.data.index.footer }}
{% endif %}
© Powered by <a class="link-primary" href="https://webifier.github.io">Webifier</a>
© Powered by <a class="link-primary" href="https://github.com/webifier/build">Webifier</a>
</div>
</footer>

0 comments on commit 556926a

Please sign in to comment.