File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -158,7 +158,15 @@ jobs:
158
158
for tool in ${{ env.CHANGED_TOOLS }}; do
159
159
cp -f ./${{ env.DISTPATH }}/$tool.exe tools/$tool.exe
160
160
done
161
- bash .github/scripts/upload_py_tools.sh "${{ env.CHANGED_TOOLS }}"
161
+
162
+ echo "Pushing '${{ env.CHANGED_TOOLS }}' as github-actions[bot]"
163
+ git config --global user.name "github-actions[bot]"
164
+ git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
165
+ for tool in ${{ env.CHANGED_TOOLS }}; do
166
+ git add tools/$tool.exe
167
+ done
168
+ git commit -m "change(tools): Push generated tools binaries"
169
+ git push
162
170
163
171
- name : Archive artifact
164
172
uses : actions/upload-artifact@master
You can’t perform that action at this time.
0 commit comments