We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3d6400 commit d9c2901Copy full SHA for d9c2901
.github/workflows/deploy.yml
@@ -36,8 +36,18 @@ jobs:
36
node-version: 18.x
37
- name: Install MyST Markdown
38
run: npm install -g mystmd
39
+ - uses: actions/setup-python@v5
40
+ with:
41
+ python-version: '3.12'
42
+ cache: 'pip'
43
+ - name: Install Python dependencies
44
+ run: pip install -r requirements.txt
45
- name: Build HTML Assets
46
run: myst build --html
47
+ # Only expose secrets here
48
+ env:
49
+ PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
50
+ PRIVATE_KEY_ID: ${{ secrets.PRIVATE_KEY_ID }}
51
- name: Upload artifact
52
uses: actions/upload-pages-artifact@v3
53
with:
requirements.txt
@@ -0,0 +1,5 @@
1
+google-analytics-data
2
+cartopy
3
+matplotlib
4
+jupyter-server
5
+ipykernel
0 commit comments