-
-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
66 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,36 +3,65 @@ name: Build mkdocs and deploy to GitHub Pages | |
on: [push, pull_request] | ||
|
||
jobs: | ||
|
||
build: | ||
name: Build docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
sparse-checkout: | | ||
docs | ||
- name: Setup python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.x | ||
- uses: actions/[email protected] | ||
- name: Get pip cache directory | ||
id: pip-cache | ||
run: | | ||
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT | ||
- name: Cache dependencies | ||
uses: actions/[email protected] | ||
with: | ||
key: ${{ github.ref }} | ||
path: .cache | ||
- run: pip install -r docs/requirements.txt | ||
- run: mkdocs build | ||
path: ${{ steps.pip-cache.outputs.dir }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install dependencies | ||
run: pip install -r docs/requirements.txt | ||
- name: Build documentation | ||
run: mkdocs build | ||
|
||
deploy: | ||
if: github.event_name == 'push' && contains(fromJson('["refs/heads/master", "refs/heads/main"]'), github.ref) | ||
needs: build | ||
name: Deploy docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: "0" | ||
- uses: actions/[email protected] | ||
fetch-depth: 0 | ||
sparse-checkout: | | ||
docs | ||
- name: Setup python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.x | ||
- uses: actions/[email protected] | ||
- name: Get pip cache directory | ||
id: pip-cache | ||
run: | | ||
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT | ||
- name: Cache dependencies | ||
uses: actions/[email protected] | ||
with: | ||
key: ${{ github.ref }} | ||
path: .cache | ||
- run: pip install -r docs/requirements.txt | ||
- run: mkdocs gh-deploy --force | ||
path: ${{ steps.pip-cache.outputs.dir }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install dependencies | ||
run: pip install -r docs/requirements.txt | ||
- name: Deploy to GitHub Pages | ||
run: mkdocs gh-deploy --force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
services: | ||
audiobookshelf: | ||
image: ghcr.io/advplyr/audiobookshelf:${AUDIOBOOKSHELF_TAG} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
services: | ||
cloudflareddns: | ||
image: cr.hotio.dev/hotio/cloudflareddns:${CLOUDFLAREDDNS_TAG} | ||
image: ghcr.io/hotio/cloudflareddns:${CLOUDFLAREDDNS_TAG} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
services: | ||
cloudflareddns: | ||
image: cr.hotio.dev/hotio/cloudflareddns:${CLOUDFLAREDDNS_TAG} | ||
image: ghcr.io/hotio/cloudflareddns:${CLOUDFLAREDDNS_TAG} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
services: | ||
duplicacy: | ||
image: cr.hotio.dev/hotio/duplicacy:${DUPLICACY_TAG} | ||
image: ghcr.io/hotio/duplicacy:${DUPLICACY_TAG} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
services: | ||
duplicacy: | ||
image: cr.hotio.dev/hotio/duplicacy:${DUPLICACY_TAG} | ||
image: ghcr.io/hotio/duplicacy:${DUPLICACY_TAG} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
services: | ||
unpackerr: | ||
image: cr.hotio.dev/hotio/unpackerr:${UNPACKERR_TAG} | ||
image: ghcr.io/hotio/unpackerr:${UNPACKERR_TAG} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
services: | ||
unpackerr: | ||
image: cr.hotio.dev/hotio/unpackerr:${UNPACKERR_TAG} | ||
image: ghcr.io/hotio/unpackerr:${UNPACKERR_TAG} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
mkdocs-git-revision-date-localized-plugin==1.2.1 | ||
mkdocs-material==9.5.1 | ||
mkdocs-minify-plugin==0.7.1 | ||
mkdocs-git-revision-date-localized-plugin==1.2.4 | ||
mkdocs-material==9.5.9 | ||
mkdocs-minify-plugin==0.8.0 | ||
mkdocs-redirects==1.2.1 |