Skip to content

Commit 8968887

Browse files
authored
Update cp__latest_dispatch.yml
madjos -> msojocs
1 parent abb7c06 commit 8968887

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/cp__latest_dispatch.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
path: yukihana/
134134
if-no-files-found: error
135135

136-
download-madjos-server:
136+
download-msojocs-server:
137137
runs-on: windows-latest
138138

139139
steps:
@@ -150,17 +150,17 @@ jobs:
150150
151151
- name: Move the downloaded directory to the target folder
152152
run: |
153-
mkdir -p madjos
154-
Move-Item -Path server -Destination madjos/
153+
mkdir -p msojocs
154+
Move-Item -Path server -Destination msojocs/
155155
156-
- name: List files in the madjos/server directory
157-
run: Get-ChildItem -Path madjos\server
156+
- name: List files in the msojocs/server directory
157+
run: Get-ChildItem -Path msojocs\server
158158

159-
- name: Upload madjos folder as an artifact
159+
- name: Upload msojocs folder as an artifact
160160
uses: actions/upload-artifact@v4
161161
with:
162-
name: madjos-patch
163-
path: madjos/
162+
name: msojocs-patch
163+
path: msojocs/
164164
if-no-files-found: error
165165

166166
download-fiddler-everywhere:
@@ -208,7 +208,7 @@ jobs:
208208

209209
needs:
210210
- download-yukihana-patch
211-
- download-madjos-server
211+
- download-msojocs-server
212212
- download-fiddler-everywhere
213213
- scrape_fe_version
214214

@@ -225,11 +225,11 @@ jobs:
225225
name: yukihana-patch
226226
path: yukihana-patch
227227

228-
- name: Download MadJos-Server
228+
- name: Download msojocs-Server
229229
uses: actions/download-artifact@v4
230230
with:
231-
name: madjos-patch
232-
path: madjos-patch
231+
name: msojocs-patch
232+
path: msojocs-patch
233233

234234
- name: Download FE
235235
uses: actions/download-artifact@v4
@@ -240,7 +240,7 @@ jobs:
240240
- name: List the contents of the downloaded artifacts
241241
run: |
242242
Get-ChildItem -Recurse yukihana-patch
243-
Get-ChildItem -Recurse madjos-patch
243+
Get-ChildItem -Recurse msojocs-patch
244244
Get-ChildItem -Recurse fe_app64
245245
shell: pwsh
246246

@@ -284,7 +284,7 @@ jobs:
284284
285285
- name: Copy Server Folder
286286
run: |
287-
$source_server_folder = "madjos-patch/server/file"
287+
$source_server_folder = "msojocs-patch/server/file"
288288
$destination_server_folder = "FE/resources/app/out"
289289
290290
if (Test-Path $source_server_folder) {
@@ -301,7 +301,7 @@ jobs:
301301
302302
$new_main = "FE/resources/app/out/main.original.js"
303303
304-
$source_index = "madjos-patch/server/index.js"
304+
$source_index = "msojocs-patch/server/index.js"
305305
$index_content = Get-Content -Path $source_index -Raw
306306
307307
if ((Test-Path $source_main) -and (Test-Path $source_index)) {
@@ -352,12 +352,12 @@ jobs:
352352
Write-Host "No file found starting with 'main' in the specified directory. (Main,XXX.js)"
353353
}
354354

355-
- name: Clean madjos-patch
355+
- name: Clean msojocs-patch
356356
run: |
357-
if (Test-Path madjos-patch) {
358-
Remove-Item -Path "madjos-patch" -Recurse
357+
if (Test-Path msojocs-patch) {
358+
Remove-Item -Path "msojocs-patch" -Recurse
359359
} else {
360-
Write-Host "madjos-patch Folder not found"
360+
Write-Host "msojocs-patch Folder not found"
361361
}
362362
363363
- name: Add patch.json

0 commit comments

Comments
 (0)