We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1df8adb commit 65c8fc4Copy full SHA for 65c8fc4
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: ci
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ - main
7
+ - lbtcftclv3.0
8
+permissions:
9
+ contents: write
10
+jobs:
11
+ deploy:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Configure Git Credentials
16
+ run: |
17
+ git config user.name github-actions[bot]
18
+ git config user.email 41898282+github-actions[bot]@users.noreply.github.com
19
+ - uses: actions/setup-python@v5
20
+ with:
21
+ python-version: 3.x
22
+ - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
23
+ - uses: actions/cache@v4
24
25
+ key: mkdocs-material-${{ env.cache_id }}
26
+ path: ~/.cache
27
+ restore-keys: |
28
+ mkdocs-material-
29
+ - run: pip install mkdocs-material
30
+ - run: mkdocs gh-deploy --force
0 commit comments