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 88name : Publish Python Package
99
1010on :
11- # trigger when publishing a release
11+ # Trigger when publishing a release.
1212 release :
1313 types : [published]
1414
15- # also allow triggering this workflow manually for testing
15+ # Also allow triggering this workflow manually for testing.
1616 workflow_dispatch :
1717
1818jobs :
2424 - name : Checkout
2525 uses : actions/checkout@v3
2626 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.
2828 fetch-depth : 0
2929 - name : Set up Python
3030 uses : actions/setup-python@v2
3636 - name : Build package
3737 run : |
3838 python setup.py sdist
39- rm dist/*.orig # clean sdist_upip noise
39+ rm dist/*.orig # Remove sdist_upip noise.
4040 - name : Publish to Test PyPI
4141 uses : pypa/gh-action-pypi-publish@release/v1
4242 with :
Original file line number Diff line number Diff line change 3232 - name : Build MicroPython
3333 id : build_micropython
3434 run : |
35- echo "Building micropython "
35+ echo "Building MicroPython "
3636 git clone --depth 1 https://github.com/micropython/micropython.git
3737 pushd micropython/mpy-cross
3838 make
5050 - name : Fetch binutils-esp32ulp
5151 id : fetch_binutils
5252 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
5555 IDFVER=v5.0.1
5656 curl -s \
5757 -o tools.json \
You can’t perform that action at this time.
0 commit comments