File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 8
8
name : Publish Python Package
9
9
10
10
on :
11
- # trigger when publishing a release
11
+ # Trigger when publishing a release.
12
12
release :
13
13
types : [published]
14
14
15
- # also allow triggering this workflow manually for testing
15
+ # Also allow triggering this workflow manually for testing.
16
16
workflow_dispatch :
17
17
18
18
jobs :
24
24
- name : Checkout
25
25
uses : actions/checkout@v3
26
26
with :
27
- # just fetching 1 commit is not enough for setuptools-scm, so we fetch all
27
+ # Fetching a single commit is not enough for setuptools-scm, so we fetch all commits.
28
28
fetch-depth : 0
29
29
- name : Set up Python
30
30
uses : actions/setup-python@v2
36
36
- name : Build package
37
37
run : |
38
38
python setup.py sdist
39
- rm dist/*.orig # clean sdist_upip noise
39
+ rm dist/*.orig # Remove sdist_upip noise.
40
40
- name : Publish to Test PyPI
41
41
uses : pypa/gh-action-pypi-publish@release/v1
42
42
with :
Original file line number Diff line number Diff line change 32
32
- name : Build MicroPython
33
33
id : build_micropython
34
34
run : |
35
- echo "Building micropython "
35
+ echo "Building MicroPython "
36
36
git clone --depth 1 https://github.com/micropython/micropython.git
37
37
pushd micropython/mpy-cross
38
38
make
50
50
- name : Fetch binutils-esp32ulp
51
51
id : fetch_binutils
52
52
run : |
53
- echo "Fetching URL of pre-built esp32ulp-elf binaries"
54
- ## URL to pre-built binaries is published in esp-idf
53
+ echo "Fetching URL of prebuilt esp32ulp-elf binaries"
54
+ ## The URL to prebuilt binaries is published in ESP-IDF
55
55
IDFVER=v5.0.1
56
56
curl -s \
57
57
-o tools.json \
You can’t perform that action at this time.
0 commit comments