From 5788c40aba50ed632e3a7f27af49b73aba241dc7 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Wed, 4 Sep 2019 22:19:12 -0700 Subject: [PATCH] Create old style github actions workflow? Does anything here work? --- .github/main.workflow | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/main.workflow 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" +}