File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
CHANGED_FILES=$1
3
- echo " Pushing '$CHANGED_FILES ' as $GITHUB_ACTOR "
4
- git config --global github.user " $GITHUB_ACTOR "
5
- git config --global user.name " $GITHUB_ACTOR "
6
- git config --global user.email " $GITHUB_ACTOR @users.noreply. github.com"
3
+ echo " Pushing '$CHANGED_FILES ' as github-actions "
4
+ git config --global github.user " github-actions "
5
+ git config --global user.name " github-actions "
6
+ git config --global user.email " github-actions@ github.com"
7
7
for tool in $CHANGED_FILES ; do
8
8
git add tools/$tool .exe
9
9
done
10
- git commit -m " Push binary to tools"
10
+ git commit -m " change(tools): Push binary to tools"
11
11
git push
Original file line number Diff line number Diff line change 89
89
- name : Checkout repository
90
90
uses : actions/checkout@v4
91
91
with :
92
+ token : ${{ secrets.TOOLS_UPLOAD_PAT }}
92
93
ref : ${{ github.event.pull_request.head.ref }}
93
94
- name : Set up Python 3.8
94
95
# Skip setting python on ARM because of missing compatibility: https://github.com/actions/setup-python/issues/108
You can’t perform that action at this time.
0 commit comments