Skip to content

Commit 1df3ef6

Browse files
committed
Cleanup
1 parent dd48aef commit 1df3ef6

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/build.yml

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

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: Install .NET Core
20-
uses: actions/setup-dotnet@v3
20+
uses: actions/setup-dotnet@v4
2121
with:
2222
dotnet-version: 8.0.x
2323

@@ -31,7 +31,7 @@ jobs:
3131
run: dotnet publish Audio.GUI.Desktop -c Release -r win-x64
3232

3333
- name: Upload build artifacts
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: net8.0_windows-${{ github.sha }}
3737
path: |
@@ -43,10 +43,10 @@ jobs:
4343

4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v3
46+
uses: actions/checkout@v4
4747

4848
- name: Install .NET Core
49-
uses: actions/setup-dotnet@v3
49+
uses: actions/setup-dotnet@v4
5050
with:
5151
dotnet-version: 8.0.x
5252

@@ -60,7 +60,7 @@ jobs:
6060
run: dotnet publish Audio.GUI.Desktop -c Release -r linux-x64
6161

6262
- name: Upload build artifacts
63-
uses: actions/upload-artifact@v3
63+
uses: actions/upload-artifact@v4
6464
with:
6565
name: net8.0_linux-${{ github.sha }}
6666
path: |
@@ -72,10 +72,10 @@ jobs:
7272

7373
steps:
7474
- name: Checkout
75-
uses: actions/checkout@v3
75+
uses: actions/checkout@v4
7676

7777
- name: Install .NET Core
78-
uses: actions/setup-dotnet@v3
78+
uses: actions/setup-dotnet@v4
7979
with:
8080
dotnet-version: 8.0.x
8181

@@ -89,7 +89,7 @@ jobs:
8989
run: dotnet publish Audio.GUI.Desktop -c Release -r osx-x64
9090

9191
- name: Upload build artifacts
92-
uses: actions/upload-artifact@v3
92+
uses: actions/upload-artifact@v4
9393
with:
9494
name: net8.0_osx-${{ github.sha }}
9595
path: |

Audio.CLI/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ namespace Audio.CLI;
55

66
public class Program
77
{
8-
public static void Main(string[] args) => CommandLine.Init([@"C:\Users\Razmoth\AppData\LocalLow\CollapseLauncher\GameFolder\GIGlb\Genshin Impact game\GenshinImpact_Data\StreamingAssets", @"F:\New folder\test", "--audio", "--convert", "--externals", @"F:\New folder\voice.txt"]);
9-
public static async Task Run(Options o)
8+
public static void Main(string[] args) => CommandLine.Init(args);
9+
public static void Run(Options o)
1010
{
1111
Logger.TryRegister(new ConsoleLogger());
1212

0 commit comments

Comments
 (0)