From fb99de8f61541585c9c5d6887ef88a12124f4b01 Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 13:32:38 -0400 Subject: [PATCH 01/16] add a check for if no files found on buld gate --- .github/workflows/build-gate.yml | 16 ++++++++++++++++ .github/workflows/build.yml | 4 ++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index fd7a653..62bfa3a 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -7,7 +7,9 @@ on: env: BUILD_VERSION: 0.1.${{github.run_number}} SLN_PATH: src/ShellRunner.sln + PROJECT_PATH: src/ShellRunner/ShellRunner.csproj TEST_PATH: src/TestApp/bin/Release/net6.0/TestApp.dll + RELEASE_ARTIFACTS: ./**/*.$BUILD_VERSION.nupkg jobs: build: @@ -29,6 +31,20 @@ jobs: --no-restore -p:Version=$BUILD_VERSION + - name: Test-Pack + run: dotnet pack $PROJECT_PATH + -c Release + --no-restore + --no-build + -p:PackageVersion=$BUILD_VERSION-alpha + + - name: Upload Test Artifacts + uses: actions/upload-artifact@v2 + with: + name: BuildArtifacts + path: RELEASE_ARTIFACTS + if-no-files-found: error + - name: Upload ShellRunner Build Artifacts uses: actions/upload-artifact@v2 with: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 474fefc..adc912c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,8 +9,8 @@ env: SLN_PATH: src/ShellRunner.sln TEST_PATH: src/TestApp/bin/Release/net6.0/TestApp.dll PROJECT_PATH: src/ShellRunner/ShellRunner.csproj - PRE_RELEASE_ARTIFACTS: ./**/ShellRunner.$BUILD_VERSION-alpha.nupkg - RELEASE_ARTIFACTS: ./**/ShellRunner.$BUILD_VERSION.nupkg + PRE_RELEASE_ARTIFACTS: ./**/*.$BUILD_VERSION-alpha.nupkg + RELEASE_ARTIFACTS: ./**/*.$BUILD_VERSION.nupkg jobs: build: From 9adc787c69b9d57f9f791b45f47802df2f88a548 Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 17:17:36 -0400 Subject: [PATCH 02/16] modify path --- .github/workflows/build-gate.yml | 2 +- .github/workflows/build.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 62bfa3a..5fb93c8 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -9,7 +9,7 @@ env: SLN_PATH: src/ShellRunner.sln PROJECT_PATH: src/ShellRunner/ShellRunner.csproj TEST_PATH: src/TestApp/bin/Release/net6.0/TestApp.dll - RELEASE_ARTIFACTS: ./**/*.$BUILD_VERSION.nupkg + RELEASE_ARTIFACTS: /**/*.$BUILD_VERSION.nupkg jobs: build: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index adc912c..0d3fbc4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,8 +9,8 @@ env: SLN_PATH: src/ShellRunner.sln TEST_PATH: src/TestApp/bin/Release/net6.0/TestApp.dll PROJECT_PATH: src/ShellRunner/ShellRunner.csproj - PRE_RELEASE_ARTIFACTS: ./**/*.$BUILD_VERSION-alpha.nupkg - RELEASE_ARTIFACTS: ./**/*.$BUILD_VERSION.nupkg + PRE_RELEASE_ARTIFACTS: /**/*.$BUILD_VERSION-alpha.nupkg + RELEASE_ARTIFACTS: /**/*.$BUILD_VERSION.nupkg jobs: build: From 028465ed9985b057ee230e7855b9f7725c5bf167 Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 17:21:37 -0400 Subject: [PATCH 03/16] modified path to artifacts --- .github/workflows/build-gate.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 5fb93c8..26b68c1 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -9,7 +9,7 @@ env: SLN_PATH: src/ShellRunner.sln PROJECT_PATH: src/ShellRunner/ShellRunner.csproj TEST_PATH: src/TestApp/bin/Release/net6.0/TestApp.dll - RELEASE_ARTIFACTS: /**/*.$BUILD_VERSION.nupkg + PRE_RELEASE_ARTIFACTS: /**/*.$BUILD_VERSION-alpha.nupkg jobs: build: @@ -42,14 +42,14 @@ jobs: uses: actions/upload-artifact@v2 with: name: BuildArtifacts - path: RELEASE_ARTIFACTS + path: $PRE_RELEASE_ARTIFACTS if-no-files-found: error - name: Upload ShellRunner Build Artifacts uses: actions/upload-artifact@v2 with: - name: BuildArtifacts - path: ./**/bin/Release/**/* + name: PreReleaseArtifacts + path: /**/bin/Release/**/* build-test: needs: build @@ -60,7 +60,7 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v2 with: - name: BuildArtifacts + name: PreReleaseArtifacts - name: Test run: dotnet $TEST_PATH From 72c4a7cbb7c08c6aec3590ee3c4be51809339f67 Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 17:29:45 -0400 Subject: [PATCH 04/16] modified paths --- .github/workflows/build-gate.yml | 4 ++-- .github/workflows/build.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 26b68c1..075ce87 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -9,7 +9,7 @@ env: SLN_PATH: src/ShellRunner.sln PROJECT_PATH: src/ShellRunner/ShellRunner.csproj TEST_PATH: src/TestApp/bin/Release/net6.0/TestApp.dll - PRE_RELEASE_ARTIFACTS: /**/*.$BUILD_VERSION-alpha.nupkg + PRE_RELEASE_ARTIFACTS: .**/*.$BUILD_VERSION-alpha.nupkg jobs: build: @@ -49,7 +49,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: PreReleaseArtifacts - path: /**/bin/Release/**/* + path: .**/bin/Release/**/* build-test: needs: build diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0d3fbc4..4e20b59 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,8 +9,8 @@ env: SLN_PATH: src/ShellRunner.sln TEST_PATH: src/TestApp/bin/Release/net6.0/TestApp.dll PROJECT_PATH: src/ShellRunner/ShellRunner.csproj - PRE_RELEASE_ARTIFACTS: /**/*.$BUILD_VERSION-alpha.nupkg - RELEASE_ARTIFACTS: /**/*.$BUILD_VERSION.nupkg + PRE_RELEASE_ARTIFACTS: .**/*.$BUILD_VERSION-alpha.nupkg + RELEASE_ARTIFACTS: .**/*.$BUILD_VERSION.nupkg jobs: build: @@ -75,7 +75,7 @@ jobs: name: PreReleaseArtifacts - name: Push ShellRunner Pre-Release Nuget - run: dotnet nuget push ./**/*-alpha.nupkg + run: dotnet nuget push .**/*-alpha.nupkg --api-key ${{secrets.NUGETKEY}} --source https://api.nuget.org/v3/index.json release: @@ -92,5 +92,5 @@ jobs: name: ReleaseArtifacts - name: Push ShellRunner Pre-Release Nuget - run: dotnet nuget push ./**/*.nupkg + run: dotnet nuget push .**/*.nupkg --api-key ${{secrets.NUGETKEY}} --source https://api.nuget.org/v3/index.json From 8dccc2b23ae84aca956b82ac524cf3316c7437d5 Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 17:32:58 -0400 Subject: [PATCH 05/16] modified paths --- .github/workflows/build-gate.yml | 4 ++-- .github/workflows/build.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 075ce87..5b83d94 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -9,7 +9,7 @@ env: SLN_PATH: src/ShellRunner.sln PROJECT_PATH: src/ShellRunner/ShellRunner.csproj TEST_PATH: src/TestApp/bin/Release/net6.0/TestApp.dll - PRE_RELEASE_ARTIFACTS: .**/*.$BUILD_VERSION-alpha.nupkg + PRE_RELEASE_ARTIFACTS: "**/*.$BUILD_VERSION-alpha.nupkg" jobs: build: @@ -49,7 +49,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: PreReleaseArtifacts - path: .**/bin/Release/**/* + path: "**/bin/Release/**/*" build-test: needs: build diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4e20b59..577689d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,8 +9,8 @@ env: SLN_PATH: src/ShellRunner.sln TEST_PATH: src/TestApp/bin/Release/net6.0/TestApp.dll PROJECT_PATH: src/ShellRunner/ShellRunner.csproj - PRE_RELEASE_ARTIFACTS: .**/*.$BUILD_VERSION-alpha.nupkg - RELEASE_ARTIFACTS: .**/*.$BUILD_VERSION.nupkg + PRE_RELEASE_ARTIFACTS: "**/*.$BUILD_VERSION-alpha.nupkg" + RELEASE_ARTIFACTS: "**/*.$BUILD_VERSION.nupkg" jobs: build: @@ -75,7 +75,7 @@ jobs: name: PreReleaseArtifacts - name: Push ShellRunner Pre-Release Nuget - run: dotnet nuget push .**/*-alpha.nupkg + run: dotnet nuget push **/*-alpha.nupkg --api-key ${{secrets.NUGETKEY}} --source https://api.nuget.org/v3/index.json release: @@ -92,5 +92,5 @@ jobs: name: ReleaseArtifacts - name: Push ShellRunner Pre-Release Nuget - run: dotnet nuget push .**/*.nupkg + run: dotnet nuget push **/*.nupkg --api-key ${{secrets.NUGETKEY}} --source https://api.nuget.org/v3/index.json From d5a798717075a0958efc3aa773ee47717520118c Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 20:28:04 -0400 Subject: [PATCH 06/16] modified paths --- .github/workflows/build-gate.yml | 18 +++++++++--------- .github/workflows/build.yml | 14 ++++++++------ 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 5b83d94..8287032 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -8,8 +8,9 @@ env: BUILD_VERSION: 0.1.${{github.run_number}} SLN_PATH: src/ShellRunner.sln PROJECT_PATH: src/ShellRunner/ShellRunner.csproj - TEST_PATH: src/TestApp/bin/Release/net6.0/TestApp.dll - PRE_RELEASE_ARTIFACTS: "**/*.$BUILD_VERSION-alpha.nupkg" + PRE_RELEASE_ARTIFACTS: src/**/*.$BUILD_VERSION-alpha.nupkg + TEST_ARTIFACTS: src/**/bin/**/* + TEST_PATH: TestApp/bin/Release/net6.0/TestApp.dll jobs: build: @@ -38,29 +39,28 @@ jobs: --no-build -p:PackageVersion=$BUILD_VERSION-alpha - - name: Upload Test Artifacts + - name: Upload Test Nuget Artifacts uses: actions/upload-artifact@v2 with: name: BuildArtifacts path: $PRE_RELEASE_ARTIFACTS if-no-files-found: error - - name: Upload ShellRunner Build Artifacts + - name: Upload Test Artifacts uses: actions/upload-artifact@v2 with: - name: PreReleaseArtifacts - path: "**/bin/Release/**/*" + name: TestArtifacts + path: $TEST_ARTIFACTS build-test: needs: build runs-on: ubuntu-latest - steps: - + steps: - name: Download artifacts uses: actions/download-artifact@v2 with: - name: PreReleaseArtifacts + name: TestArtifacts - name: Test run: dotnet $TEST_PATH diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 577689d..428fa89 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,8 +9,10 @@ env: SLN_PATH: src/ShellRunner.sln TEST_PATH: src/TestApp/bin/Release/net6.0/TestApp.dll PROJECT_PATH: src/ShellRunner/ShellRunner.csproj - PRE_RELEASE_ARTIFACTS: "**/*.$BUILD_VERSION-alpha.nupkg" - RELEASE_ARTIFACTS: "**/*.$BUILD_VERSION.nupkg" + PRE_RELEASE_ARTIFACTS: src/ShellRunner/bin/Release/netstandard2.0/ShellRunner.$BUILD_VERSION-alpha.nupkg + PRE_RELEASE_PATH: ShellRunner/bin/Release/netstandard2.0/ShellRunner.$BUILD_VERSION-alpha.nupkg + RELEASE_ARTIFACTS: src/ShellRunner/bin/Release/netstandard2.0/ShellRunner.$BUILD_VERSION.nupkg + RELEASE_PATH: ShellRunner/bin/Release/netstandard2.0/ShellRunner.$BUILD_VERSION.nupkg jobs: build: @@ -72,10 +74,10 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v2 with: - name: PreReleaseArtifacts + name: PreReleaseArtifacts - name: Push ShellRunner Pre-Release Nuget - run: dotnet nuget push **/*-alpha.nupkg + run: dotnet nuget push $PRE_RELEASE_PATH --api-key ${{secrets.NUGETKEY}} --source https://api.nuget.org/v3/index.json release: @@ -91,6 +93,6 @@ jobs: with: name: ReleaseArtifacts - - name: Push ShellRunner Pre-Release Nuget - run: dotnet nuget push **/*.nupkg + - name: Push ShellRunner Release Nuget + run: dotnet nuget push $RELEASE_PATH --api-key ${{secrets.NUGETKEY}} --source https://api.nuget.org/v3/index.json From 30da78304f522e5cf8c1c99557811a8bcb784166 Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 20:32:40 -0400 Subject: [PATCH 07/16] modify paths --- .github/workflows/build-gate.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 8287032..cd27743 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -38,7 +38,10 @@ jobs: --no-restore --no-build -p:PackageVersion=$BUILD_VERSION-alpha - + + - name: Print Files + run: ls -R + - name: Upload Test Nuget Artifacts uses: actions/upload-artifact@v2 with: From 4401d25dcb3ef1ab7d9b0e3ce9e0895eab331f6f Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 20:41:08 -0400 Subject: [PATCH 08/16] modified way to access env variables --- .github/workflows/build-gate.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index cd27743..7a82f32 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -46,14 +46,14 @@ jobs: uses: actions/upload-artifact@v2 with: name: BuildArtifacts - path: $PRE_RELEASE_ARTIFACTS + path: ${{env.PRE_RELEASE_ARTIFACTS}} if-no-files-found: error - name: Upload Test Artifacts uses: actions/upload-artifact@v2 with: name: TestArtifacts - path: $TEST_ARTIFACTS + path: ${{env.TEST_ARTIFACTS}} build-test: needs: build @@ -66,5 +66,5 @@ jobs: name: TestArtifacts - name: Test - run: dotnet $TEST_PATH + run: dotnet ${{env.TEST_PATH}} \ No newline at end of file From b21087e5d5b33ed65967aa3a8ddb0b01968101ed Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 20:42:56 -0400 Subject: [PATCH 09/16] modified path --- .github/workflows/build-gate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 7a82f32..10c798e 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -46,7 +46,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: BuildArtifacts - path: ${{env.PRE_RELEASE_ARTIFACTS}} + path: src/ShellRunner/bin/Release/ShellRunner.$BUILD_VERSION-alpha.nupkg #${{env.PRE_RELEASE_ARTIFACTS}} if-no-files-found: error - name: Upload Test Artifacts From b976240aa52c94ff2811617f6ba2758746a62115 Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 20:45:54 -0400 Subject: [PATCH 10/16] modified paths --- .github/workflows/build-gate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 10c798e..359c8f7 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -46,7 +46,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: BuildArtifacts - path: src/ShellRunner/bin/Release/ShellRunner.$BUILD_VERSION-alpha.nupkg #${{env.PRE_RELEASE_ARTIFACTS}} + path: ./src/ShellRunner/bin/Release/ShellRunner.$BUILD_VERSION-alpha.nupkg #${{env.PRE_RELEASE_ARTIFACTS}} if-no-files-found: error - name: Upload Test Artifacts From c048eb244a99199c9b8a1fe4cad972c378f02bff Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 20:53:54 -0400 Subject: [PATCH 11/16] added echo --- .github/workflows/build-gate.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 359c8f7..0116ea2 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -42,11 +42,16 @@ jobs: - name: Print Files run: ls -R + - name: Test Echo + run: echo ./src/ShellRunner/bin/Release/ShellRunner.$BUILD_VERSION-alpha.nupkg + - name: Test Echo2 + run: echo ./src/ShellRunner/bin/Release/ShellRunner.${{env.BUILD_VERSION}}-alpha.nupkg + - name: Upload Test Nuget Artifacts uses: actions/upload-artifact@v2 with: name: BuildArtifacts - path: ./src/ShellRunner/bin/Release/ShellRunner.$BUILD_VERSION-alpha.nupkg #${{env.PRE_RELEASE_ARTIFACTS}} + path: ./src/ShellRunner/bin/Release/ShellRunner.${{env.BUILD_VERSION}}-alpha.nupkg #${{env.PRE_RELEASE_ARTIFACTS}} if-no-files-found: error - name: Upload Test Artifacts From 8fa77d9a82757b5e5b3fde88056202d13ffe42ee Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 20:59:23 -0400 Subject: [PATCH 12/16] using variable again --- .github/workflows/build-gate.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 0116ea2..2cd052d 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -8,7 +8,7 @@ env: BUILD_VERSION: 0.1.${{github.run_number}} SLN_PATH: src/ShellRunner.sln PROJECT_PATH: src/ShellRunner/ShellRunner.csproj - PRE_RELEASE_ARTIFACTS: src/**/*.$BUILD_VERSION-alpha.nupkg + PRE_RELEASE_ARTIFACTS: src/ShellRunner/bin/Release/ShellRunner.${{env.BUILD_VERSION}}-alpha.nupkg TEST_ARTIFACTS: src/**/bin/**/* TEST_PATH: TestApp/bin/Release/net6.0/TestApp.dll @@ -42,16 +42,16 @@ jobs: - name: Print Files run: ls -R + #- name: Test Echo + # run: echo ./src/ShellRunner/bin/Release/ShellRunner.$BUILD_VERSION-alpha.nupkg - name: Test Echo - run: echo ./src/ShellRunner/bin/Release/ShellRunner.$BUILD_VERSION-alpha.nupkg - - name: Test Echo2 - run: echo ./src/ShellRunner/bin/Release/ShellRunner.${{env.BUILD_VERSION}}-alpha.nupkg + run: echo ${{env.PRE_RELEASE_ARTIFACTS}} - name: Upload Test Nuget Artifacts uses: actions/upload-artifact@v2 with: name: BuildArtifacts - path: ./src/ShellRunner/bin/Release/ShellRunner.${{env.BUILD_VERSION}}-alpha.nupkg #${{env.PRE_RELEASE_ARTIFACTS}} + path: ${{env.PRE_RELEASE_ARTIFACTS}} if-no-files-found: error - name: Upload Test Artifacts From 12d012f9e8f4493e2d114184be46ba0f2cd7fbe9 Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 21:00:16 -0400 Subject: [PATCH 13/16] changed env reference to single $ --- .github/workflows/build-gate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 2cd052d..082130a 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -8,7 +8,7 @@ env: BUILD_VERSION: 0.1.${{github.run_number}} SLN_PATH: src/ShellRunner.sln PROJECT_PATH: src/ShellRunner/ShellRunner.csproj - PRE_RELEASE_ARTIFACTS: src/ShellRunner/bin/Release/ShellRunner.${{env.BUILD_VERSION}}-alpha.nupkg + PRE_RELEASE_ARTIFACTS: src/ShellRunner/bin/Release/ShellRunner.$BUILD_VERSION-alpha.nupkg TEST_ARTIFACTS: src/**/bin/**/* TEST_PATH: TestApp/bin/Release/net6.0/TestApp.dll From 5c50c09c7208b4189545cc8217c0b6ff7ded79b8 Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 21:01:57 -0400 Subject: [PATCH 14/16] checking in --- .github/workflows/build-gate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 082130a..2cd052d 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -8,7 +8,7 @@ env: BUILD_VERSION: 0.1.${{github.run_number}} SLN_PATH: src/ShellRunner.sln PROJECT_PATH: src/ShellRunner/ShellRunner.csproj - PRE_RELEASE_ARTIFACTS: src/ShellRunner/bin/Release/ShellRunner.$BUILD_VERSION-alpha.nupkg + PRE_RELEASE_ARTIFACTS: src/ShellRunner/bin/Release/ShellRunner.${{env.BUILD_VERSION}}-alpha.nupkg TEST_ARTIFACTS: src/**/bin/**/* TEST_PATH: TestApp/bin/Release/net6.0/TestApp.dll From 8fc5acad6779cb00a8ddeafbad7bf4b7cfb6e875 Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 21:02:19 -0400 Subject: [PATCH 15/16] checking in --- .github/workflows/build-gate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index 2cd052d..df39db8 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -8,7 +8,7 @@ env: BUILD_VERSION: 0.1.${{github.run_number}} SLN_PATH: src/ShellRunner.sln PROJECT_PATH: src/ShellRunner/ShellRunner.csproj - PRE_RELEASE_ARTIFACTS: src/ShellRunner/bin/Release/ShellRunner.${{env.BUILD_VERSION}}-alpha.nupkg + PRE_RELEASE_ARTIFACTS: src/ShellRunner/bin/Release/ShellRunner.${{BUILD_VERSION}}-alpha.nupkg TEST_ARTIFACTS: src/**/bin/**/* TEST_PATH: TestApp/bin/Release/net6.0/TestApp.dll From ab5ef2492350c2881e694da46b12232af8bf00d1 Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Sun, 14 Aug 2022 21:05:37 -0400 Subject: [PATCH 16/16] test --- .github/workflows/build-gate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-gate.yml b/.github/workflows/build-gate.yml index df39db8..3223450 100644 --- a/.github/workflows/build-gate.yml +++ b/.github/workflows/build-gate.yml @@ -8,7 +8,7 @@ env: BUILD_VERSION: 0.1.${{github.run_number}} SLN_PATH: src/ShellRunner.sln PROJECT_PATH: src/ShellRunner/ShellRunner.csproj - PRE_RELEASE_ARTIFACTS: src/ShellRunner/bin/Release/ShellRunner.${{BUILD_VERSION}}-alpha.nupkg + PRE_RELEASE_ARTIFACTS: src/ShellRunner/bin/Release/ShellRunner.${{ env.BUILD_VERSION }}-alpha.nupkg TEST_ARTIFACTS: src/**/bin/**/* TEST_PATH: TestApp/bin/Release/net6.0/TestApp.dll