diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec52532e..b49e051d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,9 +15,25 @@ concurrency: cancel-in-progress: true jobs: + release-notes: + name: Create/Update release notes + runs-on: ubuntu-22.04 + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Create/Update Draft + uses: lucacome/draft-release@v1.0.3 + with: + minor-label: "enhancement" + major-label: "change" + publish: ${{ github.ref_type == 'tag' }} + collapse-after: 50 + if: github.event_name != 'pull_request' + build-binaries: name: Build Binaries - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: nginx_version: @@ -42,15 +58,6 @@ jobs: - name: Checkout Repository uses: actions/checkout@v4 - - name: Create/Update Draft - uses: lucacome/draft-release@v1.0.3 - with: - minor-label: "enhancement" - major-label: "change" - publish: ${{ github.ref_type == 'tag' }} - collapse-after: 50 - if: github.event_name != 'pull_request' - - name: Docker Buildx uses: docker/setup-buildx-action@v3