Increase timeout for publishing steps and broaden trigger conditions in GitHub Actions workflows. Remove unnecessary build step in copilot setup.

This commit is contained in:
Sipke Schoorstra 2026-02-04 14:57:59 +01:00
parent a8a3fbf552
commit fcdfb45286
No known key found for this signature in database
GPG key ID: 5C10502B28A4268F
2 changed files with 4 additions and 7 deletions

View file

@ -17,6 +17,3 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.0.x"
- name: Build
run: ./build.cmd Compile

View file

@ -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