Skip to content

Commit 4addeb0

Browse files
committed
Fixing generate data workflow
1 parent b5fcbfa commit 4addeb0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/generate-data.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,28 @@ jobs:
1010
steps:
1111
- name: Checkout code
1212
uses: actions/checkout@v3
13+
1314
- name: Initial config
1415
run: |
1516
git config user.name "GitHub Actions"
1617
git config user.email noreply@github.com
18+
19+
- name: Setup Python
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: "3.7.5"
23+
1724
- name: Install elementary tutorial repo
1825
run: |
1926
pip install -e.
2027
elementary-tutorial
28+
2129
- name: Generate data
2230
run: |
2331
elementary-tutorial generate-tutorial-data
32+
2433
- name: Commit changes
2534
run: git commit -am "Generated new data for the tutorial"
35+
2636
- name: Push code
2737
run: git push

0 commit comments

Comments
 (0)