Skip to content

Commit

Permalink
व्यवस्थापन
Browse files Browse the repository at this point in the history
  • Loading branch information
boseji committed Mar 26, 2024
0 parents commit 4074060
Show file tree
Hide file tree
Showing 4 changed files with 664 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: ci
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
# Repository name with owner. For example, actions/checkout
# Default: ${{ github.repository }}
#
# Here, we need URI of actual Document repository location.
# This is typically from the same user's public repository.
repository: "boseji/DocsTemplate"
path: "act"
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v3
with:
key: ${{ github.ref }}
path: .cache
- run: pip install mkdocs-material
- run: pip install pillow cairosvg mkdocs-minify-plugin
- run: pip install mkdocs-no-sitemap-plugin
- run: mkdocs gh-deploy --force
Loading

0 comments on commit 4074060

Please sign in to comment.