File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -80,18 +80,20 @@ jobs:
80
80
echo "skip_build=true" >> $GITHUB_ENV # Set an environment variable to control flow
81
81
fi
82
82
83
+ - name : Install dependencies
84
+ run : |
85
+ python -m pip install --upgrade pip
86
+ python -m pip install setuptools wheel # Install setuptools and wheel
87
+
83
88
- name : Install USB dependencies
84
89
run : sudo apt-get update && sudo apt-get install -y libusb-1.0-0-dev libudev-dev
85
90
86
- - name : Install string library build dependencies
87
- run : sudo apt-get install build-essential libc-dev libbsd-dev
88
-
89
91
- name : Build sdist
90
92
if : env.skip_build != 'true'
91
93
run : |
92
- echo $TAG_NAME
94
+ echo ${{ env. TAG_NAME }}
93
95
cd python
94
- echo $TAG_NAME >VERSION
96
+ echo ${{ env. TAG_NAME }} >VERSION
95
97
cp -r ../lib .
96
98
cp -r ../third_party .
97
99
mkdir app
You can’t perform that action at this time.
0 commit comments