From fcdfb45286c81046940adfc024fbf2d0f15496aa Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Wed, 4 Feb 2026 14:57:59 +0100 Subject: [PATCH] Increase timeout for publishing steps and broaden trigger conditions in GitHub Actions workflows. Remove unnecessary build step in copilot setup. --- .github/workflows/copilot-setup-steps.yml | 3 --- .github/workflows/packages.yml | 8 ++++---- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 351afc07a..9070ba5c4 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -17,6 +17,3 @@ jobs: uses: actions/setup-dotnet@v4 with: dotnet-version: "10.0.x" - - - name: Build - run: ./build.cmd Compile diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index afaa1538c..a5ff3de7e 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -172,7 +172,7 @@ jobs: name: Publish to feedz.io needs: build runs-on: ubuntu-latest - timeout-minutes: 10 + timeout-minutes: 20 if: ${{ github.event_name == 'release' || github.event_name == 'push'}} steps: - name: Download Packages @@ -187,8 +187,8 @@ jobs: name: Publish release to nuget.org needs: build runs-on: ubuntu-latest - timeout-minutes: 10 - if: ${{ github.event.action == 'published' }} + timeout-minutes: 20 + if: ${{ github.event.action == 'published' || github.event.action == 'prereleased' }} steps: - name: Download Packages uses: actions/download-artifact@v4.1.7 @@ -202,7 +202,7 @@ jobs: name: Deploy coverage to GitHub Pages needs: test runs-on: ubuntu-latest - if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop/3.6.0' + if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop/3.6.0' || github.ref == 'refs/heads/release/3.6.0' permissions: pages: write id-token: write