Skip to content

Merge pull request #3 from SciVedanta/knc6-patch-2 #42

Merge pull request #3 from SciVedanta/knc6-patch-2

Merge pull request #3 from SciVedanta/knc6-patch-2 #42

Workflow file for this run

#
# This is a working example of using GitHub Actions to publish the docs
# to the GitHub Pages (gh_pages) branch.
#
# Remember to have a requirements.txt file with the required dependencies.
# This template ships with one by default.
#
# It is also recommendet to also copy the template with all branches, to
# have the gh-pages branch pre-made. This prevents possible errors.
#
name: Deploy Site
#on: [push, pull_request]
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install mkdocs-material
- name: Deploy Files
run: |
#git config user.name "github-actions[bot]"
#git config user.email "actions@github.com"
git config user.name "github-actions[bot]"
git config user.email "actions@github.com"
mkdocs build
cp -r site /tmp
git fetch
git checkout gh-pages --force
rm -r *
cp -r /tmp/site/* .
echo 'listing'
ls
echo 'listing tmp'
ls /tmp
git add * */*
git commit -m 'Adding files.'
git push origin gh-pages -f
#mkdocs build
#mkdocs gh-deploy --force