Skip to content

Commit 812ceeb

Browse files
authored
Merge pull request #16 from Kookster310/fix-footer-duplication
Fix footer template + add manual workflow dispatch
2 parents 8955566 + eee1ef8 commit 812ceeb

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/mkdocs.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ on:
55
branches:
66
- master
77
workflow_dispatch:
8+
inputs:
9+
branch:
10+
description: 'Branch to build'
11+
required: false
12+
default: ''
13+
type: string
814

915
permissions:
1016
contents: read
@@ -17,6 +23,8 @@ jobs:
1723
steps:
1824
- name: Checkout
1925
uses: actions/checkout@v4
26+
with:
27+
ref: ${{ github.event.inputs.branch || 'master' }}
2028

2129
- name: Set up Python
2230
uses: actions/setup-python@v5

docs/overrides/partials/footer.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{% block footer %}
2-
{{ super() }}
32
<div class="md-footer-meta md-typeset">
43
<div class="md-footer-meta__inner md-grid">
54
<div class="md-footer-disclaimer">

0 commit comments

Comments
 (0)