Skip to content

Commit

Permalink
creating ci example
Browse files Browse the repository at this point in the history
  • Loading branch information
Jday7879 committed Mar 15, 2024
1 parent 9798798 commit 28aeef1
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/ci_example.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: ci_example
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v5
with:
python-version: 3.10
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force
2 changes: 2 additions & 0 deletions docs/info.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Information
Please submit bugs via the issues tab
3 changes: 2 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ plugins:
- hide_out

nav:
- test: index.md
- Project Documentation: index.md
- Information: info.md

0 comments on commit 28aeef1

Please sign in to comment.