Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Razmoth committed Oct 13, 2024
1 parent dd48aef commit 1df3ef6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

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

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: net8.0_windows-${{ github.sha }}
path: |
Expand All @@ -43,10 +43,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

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

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: net8.0_linux-${{ github.sha }}
path: |
Expand All @@ -72,10 +72,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

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

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: net8.0_osx-${{ github.sha }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions Audio.CLI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ namespace Audio.CLI;

public class Program
{
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"]);
public static async Task Run(Options o)
public static void Main(string[] args) => CommandLine.Init(args);
public static void Run(Options o)
{
Logger.TryRegister(new ConsoleLogger());

Expand Down

0 comments on commit 1df3ef6

Please sign in to comment.