Merge pull request #355 from rishabkumar7/gh_pages
New Website for 90DaysOfDevOps
This commit is contained in:
commit
c1678bfc98
21
.github/workflows/build-deploy-website.yml
vendored
Normal file
21
.github/workflows/build-deploy-website.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
name: build and deploy website
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- gh_pages
|
||||
permissions:
|
||||
contents: write
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.x
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ github.ref }}
|
||||
path: .cache
|
||||
- run: pip install mkdocs-material
|
||||
- run: mkdocs gh-deploy --force
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
.venv
|
||||
venv
|
BIN
docs/2022.png
Normal file
BIN
docs/2022.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 238 KiB |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user