Skip to content

Commit 45d123a

Browse files
committed
Fixed workflow
1 parent c0a2439 commit 45d123a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/clear-notebook-outputs.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# .github/workflows/propagate-config.yml
22
# This workflow keeps repos in sync
3-
name: Propagate Config File
3+
name: Remove Notebook Outputs
44

55
on:
66
push:
@@ -24,6 +24,15 @@ jobs:
2424
2525
- name: Clear notebook outputs in target repos and create PRs
2626
run: |
27+
sudo apt-get update -y
28+
29+
sudo apt-get install python3.8 -y
30+
31+
echo ✅ Install Jupyter notebook
32+
echo ✅ ------------------------
33+
# Install Jupyter notebook
34+
sudo apt-get install jupyter -y
35+
2736
# Get all notebook files
2837
files=$(git ls-files '*.ipynb')
2938
[ -z "$files" ] && exit 0

0 commit comments

Comments
 (0)