forked from splewis/get5
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Dockerfile to debian 11 (splewis#760) Update Dockerfile to debian 11 * Change gMapSides when knife round swaps. (splewis#753) This should fix Side Restore Issues in splewis#699. * Include basic mkdocs installation. Update build to use one run instead of multiple. TODO: Update build job to build and host files with GH Pages. * Documentation conversion. Start with essentials. Include build job for github pages. Update example match json for new map pool. * Update mkdocs and github action. * Update published directory. * Try once more. * Change to a different build process. * Another build change? * Include space for commands for proper formatting. * Remove redunant text in README and point to docs site. * Swap URL. * Branch update. * Include colours from the utils class. * Update generate_docs.yml Attempt to fix directory issue Co-authored-by: Alex <[email protected]>
- Loading branch information
1 parent
5fabbd4
commit d9f91fd
Showing
16 changed files
with
652 additions
and
209 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
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,24 @@ | ||
name: Publish MKDocs to GH Pages | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
name: Deploy docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add safe directory | ||
run: git config --global --add safe.directory /github/workspace | ||
|
||
- name: Checkout main | ||
uses: actions/checkout@v2 | ||
|
||
- name: Deploy docs | ||
uses: mhausenblas/mkdocs-deploy-gh-pages@master | ||
# Or use mhausenblas/mkdocs-deploy-gh-pages@nomaterial to build without the mkdocs-material theme | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CONFIG_FILE: documentation/mkdocs.yml | ||
EXTRA_PACKAGES: build-base |
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 @@ | ||
FROM debian:10 | ||
FROM debian:11 | ||
MAINTAINER Alexander Volz ([email protected]) | ||
|
||
ENV SMVERSION 1.10 | ||
|
@@ -9,7 +9,9 @@ ENV _apt_clean="eval apt-get clean && $_clean" | |
# Install support pkgs | ||
RUN apt-get update -qqy && DEBIAN_FRONTEND=noninteractive apt-get install -y \ | ||
curl wget nano net-tools gnupg2 git lib32stdc++6 python \ | ||
python-pip tar bash && $_apt_clean | ||
tar bash && $_apt_clean | ||
# Install pip2 | ||
RUN wget https://bootstrap.pypa.io/pip/2.7/get-pip.py && python2 get-pip.py | ||
|
||
RUN mkdir /get5 | ||
RUN mkdir /runscripts | ||
|
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
Oops, something went wrong.