From 9fc7ce13743099ca546b61621c6abbfcb0553a42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Borja=20Dom=C3=ADnguez?= Date: Fri, 29 Sep 2023 21:37:58 +0200 Subject: [PATCH] Do not run CI build for documentation changes (#257) --- .github/workflows/ci.yml | 72 ++++++++++++++++++++++------------------ 1 file changed, 39 insertions(+), 33 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 041c24c7..8a413ad4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,3 +1,4 @@ +--- name: ci env: @@ -6,43 +7,48 @@ env: on: push: paths-ignore: - - 'doc/**' - - 'img/**' - - 'changelog.md' - - 'readme.md' + - doc/** + - img/** + - changelog.md + - readme.md pull_request: + paths-ignore: + - doc/** + - img/** + - changelog.md + - readme.md jobs: build: runs-on: windows-latest steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Install .NET Core - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '7.0.x' - - - name: Build & test (Release) - run: dotnet test src -c Release - - - name: Should Deploy? - if: github.event_name == 'push' - run: | - if ( "${{github.ref}}" -match "^refs/tags/[0-9]+\.[0-9]+\.[0-9]+" ) { - echo "UNITYNUGET_DEPLOY=1" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append - } - - - name: Publish (Release) - if: env.UNITYNUGET_DEPLOY == 1 - run: dotnet publish src/UnityNuGet.Server/UnityNuGet.Server.csproj -c Release -o build/${{env.PROJECT_NAME}} - - - name: Azure Deploy - if: env.UNITYNUGET_DEPLOY == 1 - uses: azure/webapps-deploy@v2 - with: - app-name: unitynuget-registry - publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} - package: build/${{env.PROJECT_NAME}} \ No newline at end of file + - name: Checkout + uses: actions/checkout@v4 + + - name: Install .NET Core + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '7.0.x' + + - name: Build & test (Release) + run: dotnet test src -c Release + + - name: Should Deploy? + if: github.event_name == 'push' + run: | + if ( "${{github.ref}}" -match "^refs/tags/[0-9]+\.[0-9]+\.[0-9]+" ) { + echo "UNITYNUGET_DEPLOY=1" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append + } + + - name: Publish (Release) + if: env.UNITYNUGET_DEPLOY == 1 + run: dotnet publish src/UnityNuGet.Server/UnityNuGet.Server.csproj -c Release -o build/${{env.PROJECT_NAME}} + + - name: Azure Deploy + if: env.UNITYNUGET_DEPLOY == 1 + uses: azure/webapps-deploy@v2 + with: + app-name: unitynuget-registry + publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} + package: build/${{env.PROJECT_NAME}}