We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5fcbfa commit 4addeb0Copy full SHA for 4addeb0
.github/workflows/generate-data.yml
@@ -10,18 +10,28 @@ jobs:
10
steps:
11
- name: Checkout code
12
uses: actions/checkout@v3
13
+
14
- name: Initial config
15
run: |
16
git config user.name "GitHub Actions"
17
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
24
- name: Install elementary tutorial repo
25
26
pip install -e.
27
elementary-tutorial
28
29
- name: Generate data
30
31
elementary-tutorial generate-tutorial-data
32
33
- name: Commit changes
34
run: git commit -am "Generated new data for the tutorial"
35
36
- name: Push code
37
run: git push
0 commit comments