diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 00000000..52899ae1 --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,9 @@ +workflow "New workflow" { + on = "push" + resolves = ["Setup Dotnet for use with actions"] +} + +action "Setup Dotnet for use with actions" { + uses = "actions/setup-dotnet@a2db70294c800f14593a400f4a1dc16ff5a73a36" + runs = "dotnet build ./TShockAPI/TShockAPI.csproj" +}