Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit 38ea907

Browse files
committed
use dynamic path and specify build options on command line
1 parent c1781ef commit 38ea907

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ps5-nor-modifier.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222

2323
- name: Execute unit tests
2424
working-directory: "PS5 NOR Modifier"
25-
run: dotnet test -a x86
25+
run: dotnet test --configuration debug --runtime win-x86
2626

2727
- name: Build release
2828
working-directory: "PS5 NOR Modifier"
29-
run: dotnet publish -a x86
29+
run: dotnet publish --configuration debug --runtime win-x86
3030

3131
- name: Upload build artifacts
3232
uses: actions/upload-artifact@v4
3333
with:
3434
name: "PS5 NOR Modifier"
35-
path: "PS5 NOR Modifier/bin/Release/net6.0-windows/win-x86/publish/PS5 NOR Modifier.exe"
35+
path: "PS5 NOR Modifier/bin/*/*/*/publish/"

.github/workflows/uart-cl-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222

2323
- name: Execute unit tests
2424
working-directory: "UART-CL By TheCod3r"
25-
run: dotnet test --runtime linux-x64
25+
run: dotnet test --configuration debug --runtime linux-x64
2626

2727
- name: Build release
2828
working-directory: "UART-CL By TheCod3r"
29-
run: dotnet publish --runtime linux-x64
29+
run: dotnet publish --configuration debug --runtime linux-x64
3030

3131
- name: Upload build artifacts
3232
uses: actions/upload-artifact@v4
3333
with:
3434
name: "UART-CL By TheCod3r"
35-
path: "UART-CL By TheCod3r/bin/Release/net6.0/linux-x64/publish/UART-CL By TheCod3r"
35+
path: "UART-CL By TheCod3r/bin/*/*/*/publish/"

.github/workflows/uart-cl-windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222

2323
- name: Execute unit tests
2424
working-directory: "UART-CL By TheCod3r"
25-
run: dotnet test -a x86
25+
run: dotnet test --configuration debug --runtime win-x86
2626

2727
- name: Build release
2828
working-directory: "UART-CL By TheCod3r"
29-
run: dotnet publish -a x86
29+
run: dotnet publish --configuration debug --runtime win-x86
3030

3131
- name: Upload build artifacts
3232
uses: actions/upload-artifact@v4
3333
with:
3434
name: "UART-CL By TheCod3r"
35-
path: "UART-CL By TheCod3r/bin/Release/net6.0/win-x86/publish/UART-CL By TheCod3r.exe"
35+
path: "UART-CL By TheCod3r/bin/*/*/*/publish/"

0 commit comments

Comments
 (0)