Skip to content

Commit 65f2a9b

Browse files
Update static.yml
1 parent 73ecaf6 commit 65f2a9b

File tree

1 file changed

+0
-39
lines changed

1 file changed

+0
-39
lines changed

.github/workflows/static.yml

-39
Original file line numberDiff line numberDiff line change
@@ -22,45 +22,6 @@ concurrency:
2222
cancel-in-progress: false
2323

2424
jobs:
25-
# Single deploy job since we're just deploying
26-
build:
27-
runs-on: ubuntu-latest
28-
permission:
29-
contents: write
30-
31-
steps:
32-
- uses: actions/checkout@v3
33-
34-
- name: Setup Python
35-
uses: actions/setup-python@v3
36-
with:
37-
python-version: '3.9.7'
38-
39-
- name: Upgrade pip
40-
run: |
41-
python3 -m pip install --upgrade pip
42-
43-
- name: Get pip cache dir
44-
id: pip-cache
45-
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
46-
47-
- name: Cache dependencies
48-
uses: actions/cache@v3
49-
with:
50-
path: ${{ steps.pip-cache.outputs.dir }}
51-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
52-
restore-keys: |
53-
${{ runner.os }}-pip-
54-
55-
- name: Install dependencies
56-
run: |
57-
pip install -e .[docs]
58-
59-
- name: Build docs
60-
run: |
61-
cd docs
62-
make html
63-
6425
deploy:
6526
environment:
6627
name: github-pages

0 commit comments

Comments
 (0)