Giter Site home page Giter Site logo

christopherrothwell / mkdocs_builder Goto Github PK

View Code? Open in Web Editor NEW

This project forked from moonpathbg/mkdocs_builder

0.0 0.0 0.0 15 KB

Container to render MkDocs source code to ready for use web page

License: GNU General Public License v3.0

Shell 23.92% Dockerfile 76.08%

mkdocs_builder's Introduction

MkDocks builder

This container is used to compile MkDocs source code to fully functional page.

Main purpose of creating it was to keep one of my web pages up to date.

  • Web site source code is kept in GitHub repository.
  • After I push canges, workflow is triggered.
  • The source gets compiled.
  • The compiled files are stored in ./site folder (by default).
  • SCP upload task then upload the files to my web server.

Example workflow

name: Site deploy
on:
  push:
    branches: [ main ]
  workflow_dispatch:
jobs:
  upload:
    runs-on: ubuntu-latest
    steps:
    - name: Checkout code to workspace
      uses: actions/checkout@v2

    - name: Build MkDocs code
      uses: moonpathbg/mkdocs_builder@latest

    - name: Deploy to web server
      uses: moonpathbg/scp_uploader@latest
      with:
          host: ${{ secrets.HOST }}
          port: ${{ secrets.PORT }}
          username: ${{ secrets.USERNAME }}
          key : ${{ secrets.SSH_KEY }}
          source: "./site/"
          target: "~/"

mkdocs_builder's People

Contributors

christopherrothwell avatar kandev avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.