Skip to content

Commit 9e501f5

Browse files
committed
Finalize scripts
1 parent ae8f30f commit 9e501f5

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/scripts/upload_py_tools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ git config --global github.user "$GITHUB_ACTOR"
55
git config --global user.name "$GITHUB_ACTOR"
66
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
77
for tool in $CHANGED_FILES; do
8-
echo "git add tools/$tool.exe"
8+
git add tools/$tool.exe
99
done
1010
git commit -m "Push binary to tools"
1111
git push

.github/workflows/build_py_tools.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,11 @@ jobs:
7272
DISTPATH: pytools-${{ matrix.TARGET }}
7373
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi"
7474
steps:
75-
- name: List all changed files
75+
- name: List changed tools
7676
shell: bash
7777
run: |
7878
CHANGED_FILES=()
7979
for file in ${{ needs.find-changed-tools.outputs.all_changed_files }}; do
80-
echo "$file got changed"
8180
file="${file#*\/}"
8281
file="${file%\.*}"
8382
CHANGED_FILES+=("$file")
@@ -119,7 +118,6 @@ jobs:
119118
{
120119
./.github/pytools/Sign-File.ps1 -Path ./${{ env.DISTPATH }}/$node.exe
121120
}
122-
# if exist ./${{ env.DISTPATH }}/get.exe ./.github/pytools/Sign-File.ps1 -Path ./${{ env.DISTPATH }}/get.exe
123121
- name: Test binaries
124122
shell: bash
125123
run: |

0 commit comments

Comments
 (0)