@robotical/martyblocks 1.6.3 → 1.6.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -29,11 +29,15 @@ jobs:
|
|
|
29
29
|
with:
|
|
30
30
|
ref: ${{ github.event.inputs.branch || 'master' }}
|
|
31
31
|
|
|
32
|
+
- name: Set up Python 2.7
|
|
33
|
+
run: |
|
|
34
|
+
sudo apt-get update
|
|
35
|
+
sudo apt-get install python2.7
|
|
32
36
|
|
|
33
|
-
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
- name: Link python to python2.7
|
|
38
|
+
run: |
|
|
39
|
+
sudo ln -sf /usr/bin/python2.7 /usr/bin/python
|
|
40
|
+
|
|
37
41
|
- name: Use Node.js 16.15.0
|
|
38
42
|
uses: actions/setup-node@v3
|
|
39
43
|
with:
|