Skip to content

Commit 31118a6

Browse files
committed
Fix the tools repo name
1 parent 3e9fd61 commit 31118a6

File tree

2 files changed

+39
-40
lines changed

2 files changed

+39
-40
lines changed

.github/workflows/linux.yml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -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 }}

.github/workflows/windows.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,43 +14,42 @@ concurrency:
1414

1515
jobs:
1616
build:
17-
1817
runs-on: windows-latest
1918

2019
steps:
2120
- uses: actions/checkout@v1
2221
- name: Get Submodules
2322
run: git submodule update --init --recursive
24-
- name: Get KincTools_windows_x64
25-
run: git clone https://github.com/Kode/KincTools_windows_x64.git
23+
- name: Get KoreTools_windows_x64
24+
run: git clone https://github.com/Kode/KoreTools_windows_x64.git
2625
- name: Compile
27-
run: KincTools_windows_x64\kmake --compile
26+
run: KoreTools_windows_x64\kmake --compile
2827
- name: Copy binary
29-
run: copy build\x64\Release\krafix.exe KincTools_windows_x64\krafix.exe
28+
run: copy build\x64\Release\krafix.exe KoreTools_windows_x64\krafix.exe
3029
- name: Set name
3130
run: git config --global user.name "Robbot"
3231
- name: Set email
3332
run: git config --global user.email "robbot2019@robdangero.us"
3433
- name: Commit binary
3534
id: commit
3635
continue-on-error: true
37-
run: git -C KincTools_windows_x64 commit -a -m "Update krafix binary to ${env:GITHUB_SHA}."
36+
run: git -C KoreTools_windows_x64 commit -a -m "Update krafix binary to ${env:GITHUB_SHA}."
3837
- name: Tag binary
3938
if: steps.commit.outcome == 'success'
40-
run: git -C KincTools_windows_x64 tag krafix_${env:GITHUB_SHA}
39+
run: git -C KoreTools_windows_x64 tag krafix_${env:GITHUB_SHA}
4140
- name: Push binary
4241
id: push1
4342
if: steps.commit.outcome == 'success'
4443
continue-on-error: true
45-
run: git -C KincTools_windows_x64 push https://Kode-Robbot:${env:ROBBOT_PASS}@github.com/Kode/KincTools_windows_x64.git main --tags
44+
run: git -C KoreTools_windows_x64 push https://Kode-Robbot:${env:ROBBOT_PASS}@github.com/Kode/KoreTools_windows_x64.git main --tags
4645
env:
4746
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}
4847
- name: Pull
4948
if: steps.commit.outcome == 'success' && steps.push1.outcome != 'success'
50-
run: git -C KincTools_windows_x64 pull --no-rebase
49+
run: git -C KoreTools_windows_x64 pull --no-rebase
5150
- name: Push binary again
5251
if: steps.commit.outcome == 'success' && steps.push1.outcome != 'success'
5352
continue-on-error: true
54-
run: git -C KincTools_windows_x64 push https://Kode-Robbot:${env:ROBBOT_PASS}@github.com/Kode/KincTools_windows_x64.git main --tags
53+
run: git -C KoreTools_windows_x64 push https://Kode-Robbot:${env:ROBBOT_PASS}@github.com/Kode/KoreTools_windows_x64.git main --tags
5554
env:
5655
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}

0 commit comments

Comments
 (0)