@@ -33,39 +33,39 @@ jobs:
3333 - name : Build in Alpine chroot
3434 run : |
3535 cd /home/runner/work/krafix/krafix
36- git clone --depth 1 https://github.com/Kode/KincTools_linux_x64 .git KincTools
37- ./KincTools /kmake --compile
36+ git clone --depth 1 https://github.com/Kode/KoreTools_linux_x64 .git KoreTools
37+ ./KoreTools /kmake --compile
3838 shell : alpine.sh --root {0}
3939
40- - name : Get KincTools_linux_x64
41- run : git clone https://github.com/Kode/KincTools_linux_x64 .git
40+ - name : Get KoreTools_linux_x64
41+ run : git clone https://github.com/Kode/KoreTools_linux_x64 .git
4242 - name : Copy binary
43- run : cp /home/runner/work/krafix/krafix/build/release/krafix KincTools_linux_x64 /krafix
43+ run : cp /home/runner/work/krafix/krafix/build/release/krafix KoreTools_linux_x64 /krafix
4444 - name : Set name
4545 run : git config --global user.name "Robbot"
4646 - name : Set email
4747 run : git config --global user.email "robbot2019@robdangero.us"
4848 - name : Commit binary
4949 id : commit
5050 continue-on-error : true
51- run : git -C KincTools_linux_x64 commit -a -m "Update krafix binary to $GITHUB_SHA."
51+ run : git -C KoreTools_linux_x64 commit -a -m "Update krafix binary to $GITHUB_SHA."
5252 - name : Tag binary
5353 if : steps.commit.outcome == 'success'
54- run : git -C KincTools_linux_x64 tag krafix_$GITHUB_SHA
54+ run : git -C KoreTools_linux_x64 tag krafix_$GITHUB_SHA
5555 - name : Push binary
5656 id : push1
5757 if : steps.commit.outcome == 'success'
5858 continue-on-error : true
59- run : git -C KincTools_linux_x64 push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/KincTools_linux_x64 .git main --tags
59+ run : git -C KoreTools_linux_x64 push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/KoreTools_linux_x64 .git main --tags
6060 env :
6161 ROBBOT_PASS : ${{ secrets.ROBBOT_PASS }}
6262 - name : Pull
6363 if : steps.commit.outcome == 'success' && steps.push1.outcome != 'success'
64- run : git -C KincTools_linux_x64 pull --no-rebase
64+ run : git -C KoreTools_linux_x64 pull --no-rebase
6565 - name : Push binary again
6666 if : steps.commit.outcome == 'success' && steps.push1.outcome != 'success'
6767 continue-on-error : true
68- run : git -C KincTools_linux_x64 push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/KincTools_linux_x64 .git main --tags
68+ run : git -C KoreTools_linux_x64 push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/KoreTools_linux_x64 .git main --tags
6969 env :
7070 ROBBOT_PASS : ${{ secrets.ROBBOT_PASS }}
7171
@@ -97,14 +97,14 @@ jobs:
9797 run : |
9898 export PATH=$PATH:/home/runner/work/aarch64-linux-musl-cross/bin
9999 cd /home/runner/work/krafix/krafix
100- git clone --depth 1 https://github.com/Kode/KincTools_linux_x64 .git KincTools
101- ./KincTools /kmake --compile --cc aarch64-linux-musl-gcc --cxx aarch64-linux-musl-g++
100+ git clone --depth 1 https://github.com/Kode/KoreTools_linux_x64 .git KoreTools
101+ ./KoreTools /kmake --compile --cc aarch64-linux-musl-gcc --cxx aarch64-linux-musl-g++
102102 shell : alpine.sh --root {0}
103103
104- - name : Get KincTools_linux_arm64
105- run : git clone https://github.com/Kode/KincTools_linux_arm64 .git
104+ - name : Get KoreTools_linux_arm64
105+ run : git clone https://github.com/Kode/KoreTools_linux_arm64 .git
106106 - name : Copy binary
107- run : cp /home/runner/work/krafix/krafix/build/release/krafix KincTools_linux_arm64 /krafix
107+ run : cp /home/runner/work/krafix/krafix/build/release/krafix KoreTools_linux_arm64 /krafix
108108 - name : Set name
109109 run : git config --global user.name "Robbot"
110110 - name : Set email
@@ -113,24 +113,24 @@ jobs:
113113 id : commit
114114 continue-on-error : true
115115 run : |
116- git -C KincTools_linux_arm64 commit -a -m "Update krafix_arm64 binary to $GITHUB_SHA."
116+ git -C KoreTools_linux_arm64 commit -a -m "Update krafix_arm64 binary to $GITHUB_SHA."
117117 - name : Tag binary
118118 if : steps.commit.outcome == 'success'
119- run : git -C KincTools_linux_arm64 tag linux_arm64_krafix_ $GITHUB_SHA
119+ run : git -C KoreTools_linux_arm64 tag krafix_ $GITHUB_SHA
120120 - name : Push binary
121121 id : push1
122122 if : steps.commit.outcome == 'success'
123123 continue-on-error : true
124- run : git -C KincTools_linux_arm64 push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/KincTools_linux_arm64 .git main --tags
124+ run : git -C KoreTools_linux_arm64 push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/KoreTools_linux_arm64 .git main --tags
125125 env :
126126 ROBBOT_PASS : ${{ secrets.ROBBOT_PASS }}
127127 - name : Pull
128128 if : steps.commit.outcome == 'success' && steps.push1.outcome != 'success'
129- run : git -C KincTools_linux_arm64 pull --no-rebase
129+ run : git -C KoreTools_linux_arm64 pull --no-rebase
130130 - name : Push binary again
131131 if : steps.commit.outcome == 'success' && steps.push1.outcome != 'success'
132132 continue-on-error : true
133- run : git -C KincTools_linux_arm64 push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/KincTools_linux_arm64 .git main --tags
133+ run : git -C KoreTools_linux_arm64 push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/KoreTools_linux_arm64 .git main --tags
134134 env :
135135 ROBBOT_PASS : ${{ secrets.ROBBOT_PASS }}
136136
@@ -162,15 +162,15 @@ jobs:
162162 run : |
163163 export PATH=$PATH:/home/runner/work/armv7l-linux-musleabihf-cross/bin
164164 cd /home/runner/work/krafix/krafix
165- git clone --depth 1 https://github.com/Kode/KincTools_linux_x64 .git KincTools
166- ./KincTools /kmake --compile --cc armv7l-linux-musleabihf-gcc --cxx armv7l-linux-musleabihf-g++
165+ git clone --depth 1 https://github.com/Kode/KoreTools_linux_x64 .git KoreTools
166+ ./KoreTools /kmake --compile --cc armv7l-linux-musleabihf-gcc --cxx armv7l-linux-musleabihf-g++
167167
168168 shell : alpine.sh --root {0}
169169
170- - name : Get KincTools_linux_arm
171- run : git clone https://github.com/Kode/KincTools_linux_arm .git
170+ - name : Get KoreTools_linux_arm
171+ run : git clone https://github.com/Kode/KoreTools_linux_arm .git
172172 - name : Copy binary
173- run : cp /home/runner/work/krafix/krafix/build/release/krafix KincTools_linux_arm /krafix
173+ run : cp /home/runner/work/krafix/krafix/build/release/krafix KoreTools_linux_arm /krafix
174174 - name : Set name
175175 run : git config --global user.name "Robbot"
176176 - name : Set email
@@ -179,23 +179,23 @@ jobs:
179179 id : commit
180180 continue-on-error : true
181181 run : |
182- git -C KincTools_linux_arm commit -a -m "Update krafix_arm binary to $GITHUB_SHA."
182+ git -C KoreTools_linux_arm commit -a -m "Update krafix_arm binary to $GITHUB_SHA."
183183 - name : Tag binary
184184 if : steps.commit.outcome == 'success'
185- run : git -C KincTools_linux_arm tag linux_arm_krafix_ $GITHUB_SHA
185+ run : git -C KoreTools_linux_arm tag krafix_ $GITHUB_SHA
186186 - name : Push binary
187187 id : push1
188188 if : steps.commit.outcome == 'success'
189189 continue-on-error : true
190- run : git -C KincTools_linux_arm push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/KincTools_linux_arm .git main --tags
190+ run : git -C KoreTools_linux_arm push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/KoreTools_linux_arm .git main --tags
191191 env :
192192 ROBBOT_PASS : ${{ secrets.ROBBOT_PASS }}
193193 - name : Pull
194194 if : steps.commit.outcome == 'success' && steps.push1.outcome != 'success'
195- run : git -C KincTools_linux_arm pull --no-rebase
195+ run : git -C KoreTools_linux_arm pull --no-rebase
196196 - name : Push binary again
197197 if : steps.commit.outcome == 'success' && steps.push1.outcome != 'success'
198198 continue-on-error : true
199- run : git -C KincTools_linux_arm push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/KincTools_linux_arm .git main --tags
199+ run : git -C KoreTools_linux_arm push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/KoreTools_linux_arm .git main --tags
200200 env :
201201 ROBBOT_PASS : ${{ secrets.ROBBOT_PASS }}
0 commit comments