From 36397e2ae92cfcc4e1af8f6d537f0fd5e679d788 Mon Sep 17 00:00:00 2001 From: Edwin enoh Date: Fri, 25 Oct 2024 10:22:49 -0400 Subject: [PATCH 1/5] build step --- .../.github/workflows/examdotnet.yml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 example-dotnet/.github/workflows/examdotnet.yml diff --git a/example-dotnet/.github/workflows/examdotnet.yml b/example-dotnet/.github/workflows/examdotnet.yml new file mode 100644 index 0000000..f356a40 --- /dev/null +++ b/example-dotnet/.github/workflows/examdotnet.yml @@ -0,0 +1,31 @@ +name: example-dotnet +run-name: example-dotnet +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + build: + runs-on: window-latest + steps: + - name: checkout step + uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-dotnet@v3 + with: + node-version: "2.1.x" + - name: Install Dependencies + run: | + dotnet restore + - name: build step + run: | + dotnet-build --configuration debug --output ./resources/dotnet-ouptput + + + + + + + \ No newline at end of file From 4b7bac4df73156cbd0f1ec6f0c3994192ff43edc Mon Sep 17 00:00:00 2001 From: Edwin enoh Date: Fri, 25 Oct 2024 10:31:42 -0400 Subject: [PATCH 2/5] build step --- example-dotnet/.github/workflows/examdotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example-dotnet/.github/workflows/examdotnet.yml b/example-dotnet/.github/workflows/examdotnet.yml index f356a40..5f0e245 100644 --- a/example-dotnet/.github/workflows/examdotnet.yml +++ b/example-dotnet/.github/workflows/examdotnet.yml @@ -1,5 +1,5 @@ name: example-dotnet -run-name: example-dotnet +run-name: example-dotnet app on: push: branches: From a068ec34df5429c526407aaa1e85492dac163915 Mon Sep 17 00:00:00 2001 From: Edwin enoh Date: Fri, 25 Oct 2024 10:36:34 -0400 Subject: [PATCH 3/5] build step --- .../.github/workflows/examdotnet.yml | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 example-dotnet/.github/workflows/examdotnet.yml diff --git a/example-dotnet/.github/workflows/examdotnet.yml b/example-dotnet/.github/workflows/examdotnet.yml deleted file mode 100644 index 5f0e245..0000000 --- a/example-dotnet/.github/workflows/examdotnet.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: example-dotnet -run-name: example-dotnet app -on: - push: - branches: - - main - workflow_dispatch: - -jobs: - build: - runs-on: window-latest - steps: - - name: checkout step - uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-dotnet@v3 - with: - node-version: "2.1.x" - - name: Install Dependencies - run: | - dotnet restore - - name: build step - run: | - dotnet-build --configuration debug --output ./resources/dotnet-ouptput - - - - - - - \ No newline at end of file From 844a28548c9a576b9691b96c51fd228c1e6e1dc9 Mon Sep 17 00:00:00 2001 From: Edwin enoh Date: Fri, 25 Oct 2024 10:39:17 -0400 Subject: [PATCH 4/5] build step --- example-dotnet/.github/workflows/exam.yml | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 example-dotnet/.github/workflows/exam.yml diff --git a/example-dotnet/.github/workflows/exam.yml b/example-dotnet/.github/workflows/exam.yml new file mode 100644 index 0000000..f3d4fc5 --- /dev/null +++ b/example-dotnet/.github/workflows/exam.yml @@ -0,0 +1,24 @@ +name: example-dotnet +run-name: example-dotnet app +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + build: + runs-on: window-latest + steps: + - name: checkout step + uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-dotnet@v3 + with: + node-version: "2.1.x" + - name: Install Dependencies + run: | + dotnet restore + - name: build step + run: | + dotnet-build --configuration debug --output ./resources/dotnet-ouptput From 0093a87b4bbbb28d98cce7053d2fdfc2fc7dca0a Mon Sep 17 00:00:00 2001 From: Edwin enoh Date: Fri, 25 Oct 2024 10:58:18 -0400 Subject: [PATCH 5/5] build step --- example-dotnet/.github/workflows/exam.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example-dotnet/.github/workflows/exam.yml b/example-dotnet/.github/workflows/exam.yml index f3d4fc5..110c0de 100644 --- a/example-dotnet/.github/workflows/exam.yml +++ b/example-dotnet/.github/workflows/exam.yml @@ -12,8 +12,8 @@ jobs: steps: - name: checkout step uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-dotnet@v3 + - name: Set up donet + uses: actions/setup-dotnet@v4 with: node-version: "2.1.x" - name: Install Dependencies