diff options
| author | Bobby <[email protected]> | 2022-01-23 17:53:48 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-01-23 17:53:48 -0500 |
| commit | 06ad9daa1feac310330915bcb87927d048708436 (patch) | |
| tree | 3db3a4e204cee1bc758436cf15e8ac54f95bdd40 /.github | |
| parent | 35c2d88d604516d52d2623cdc27029348e1bae47 (diff) | |
| download | izuku.js-06ad9daa1feac310330915bcb87927d048708436.tar.xz izuku.js-06ad9daa1feac310330915bcb87927d048708436.zip | |
chore: action to deploy docs
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..5d7fc8d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: ci +on: + push: + branches: + - master + - main +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.x + - run: pip install mkdocs-material + - run: mkdocs gh-deploy --force |
