Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit 16a7439

Browse files
committed
testing changes
1 parent 4bb24d7 commit 16a7439

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
# Build Updater
5050
- name: Build Updater
51-
run: msbuild Deploy\SpcodeUpdater\SpcodeUpdater.csproj /p:Configuration=Release
51+
run: msbuild Deploy\SPCodeUpdater\SPCodeUpdater.csproj /p:Configuration=Release
5252

5353
- name: Create Release
5454
id: create_release
@@ -91,6 +91,6 @@ jobs:
9191
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9292
with:
9393
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
94-
asset_path: .\Deploy\SpcodeUpdater\bin\Release\SpcodeUpdater.exe
95-
asset_name: SpcodeUpdater.exe
94+
asset_path: .\Deploy\SpcodeUpdater\bin\Release\SPCodeUpdater.exe
95+
asset_name: SPCodeUpdater.exe
9696
asset_content_type: application/octet-stream

Deploy/SpcodeUpdater/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static class Program
1616
[STAThread]
1717
public static void Main()
1818
{
19-
var processes = Process.GetProcessesByName("Spcode");
19+
var processes = Process.GetProcessesByName("SPCode");
2020
foreach (var process in processes)
2121
{
2222
try

UpdaterTest/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private static bool IsUpToDate(string current, string latest)
9292
private static async Task<Release> GetLatest()
9393
{
9494
var client = new GitHubClient(new ProductHeaderValue("spcode-client"));
95-
var releases = await client.Repository.Release.GetAll("Hexer10", "Spcode");
95+
var releases = await client.Repository.Release.GetAll("Hexer10", "SPCode");
9696
return releases[0];
9797
}
9898
}

0 commit comments

Comments
 (0)