File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -35,19 +35,18 @@ jobs:
35
35
- name : Initialize deploy tools
36
36
env :
37
37
ESP8266_ARDUINO_CORE_DIR : ${{ github.workspace }}/esp8266
38
- SSH_DEPLOY_SECRET : ${{ secrets.SSH_DEPLOY_KEY }}
39
- SSH_DEPLOY_KEY : ${HOME}/.ssh/deploy_key
38
+ SSH_DEPLOY_KEY : ${{ secrets.SSH_DEPLOY_KEY }}
40
39
run : |
41
40
mkdir ${HOME}/.ssh
42
41
43
- cat "${SSH_DEPLOY_SECRET }" > "${SSH_DEPLOY_KEY}"
44
- chmod 600 "${SSH_DEPLOY_KEY}"
42
+ cat "${SSH_DEPLOY_KEY }" > ${HOME}/.ssh/deploy_key
43
+ chmod 600 ~/.ssh/deploy_key
45
44
46
- echo -ne "Host github.com\n\tHostName github.com\n\tIdentityFile ${SSH_DEPLOY_KEY} \n" > \
45
+ echo -ne "Host github.com\n\tHostname github.com\n\tIdentityFile ~/.ssh/deploy_key \n" > \
47
46
${HOME}/.ssh/config
48
47
49
- git config user.email "[email protected] "
50
- git config user.name "GitHub CI Action "
48
+ git config user.name "Maxim Prokhorov (CI) "
49
+ git config user.email "[email protected] "
51
50
52
51
- name : Initialize build environment
53
52
run : |
58
57
- name : Prepare lwip2 builder
59
58
run : |
60
59
pushd ${ESP8266_ARDUINO_CORE_DIR}
61
- git remote add deploy ${{ github.repositoryUrl }}
60
+ git remote add deploy [email protected] : ${{ github.repository }}.git
62
61
git switch -c lwip2-rebuild
63
62
git submodule update --init -- tools/sdk/lwip2/builder
64
63
git submodule update --remote --merge -- tools/sdk/lwip2/builder
You can’t perform that action at this time.
0 commit comments