From 6b9079d61c2e894c9cae71f53886dfb6affc5229 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Sun, 15 Sep 2024 17:17:27 -0700 Subject: [PATCH] Refactor Nuke script paths and update GitHub Actions Simplify the Nuke directory structure by moving scripts to the root level. Adjust the GitHub Actions workflow to reflect the new script path. This improves script accessibility and project organization. --- .github/workflows/packages.yml | 2 +- build/_build.csproj | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 3546fbed14..6fa5c5d9c4 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -79,7 +79,7 @@ jobs: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: dotnet sonarscanner begin /k:"elsa-workflows_elsa-core" /o:"elsa-workflows" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.exclusions=**/obj/**,**/*.dll,build/**,samples/**,src/apps/** /d:"sonar.verbose=true" /d:sonar.cs.opencover.reportsPaths=**/testresults/**/coverage.opencover.xml - name: Compile+Test+Pack - run: ./scripts/nuke/build.sh Compile+Test+Pack --version ${VERSION} --analyseCode true + run: ./build.sh Compile+Test+Pack --version ${VERSION} --analyseCode true - name: End SonarCloud analysis env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/build/_build.csproj b/build/_build.csproj index d87073bbb6..39919ed951 100644 --- a/build/_build.csproj +++ b/build/_build.csproj @@ -5,8 +5,8 @@ net8.0 CS0649;CS0169;CA1050;CA1822;CA2211;IDE1006 - ../scripts/nuke - ../scripts/nuke + .. + .. 1 true true