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

merging tested changes #63

Merged
merged 2 commits into from
Feb 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/compile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ jobs:
uses: actions/upload-artifact@v1
with:
name: SpcodeUpdater.exe
path: .\Deploy\SpcodeUpdater\bin\Release\SpcodeUpdater.exe
path: .\Deploy\SpcodeUpdater\bin\Release\SPCodeUpdater.exe
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

# Build Updater
- name: Build Updater
run: msbuild Deploy\SpcodeUpdater\SpcodeUpdater.csproj /p:Configuration=Release
run: msbuild Deploy\SPCodeUpdater\SPCodeUpdater.csproj /p:Configuration=Release

- name: Create Release
id: create_release
Expand Down Expand Up @@ -91,6 +91,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
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
asset_path: .\Deploy\SpcodeUpdater\bin\Release\SpcodeUpdater.exe
asset_name: SpcodeUpdater.exe
asset_path: .\Deploy\SpcodeUpdater\bin\Release\SPCodeUpdater.exe
asset_name: SPCodeUpdater.exe
asset_content_type: application/octet-stream
2 changes: 1 addition & 1 deletion Deploy/SpcodeUpdater/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static class Program
[STAThread]
public static void Main()
{
var processes = Process.GetProcessesByName("Spcode");
var processes = Process.GetProcessesByName("SPCode");
foreach (var process in processes)
{
try
Expand Down
2 changes: 1 addition & 1 deletion UpdaterTest/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private static bool IsUpToDate(string current, string latest)
private static async Task<Release> GetLatest()
{
var client = new GitHubClient(new ProductHeaderValue("spcode-client"));
var releases = await client.Repository.Release.GetAll("Hexer10", "Spcode");
var releases = await client.Repository.Release.GetAll("Hexer10", "SPCode");
return releases[0];
}
}
Expand Down