Skip to content

Commit

Permalink
Move release notes to separate job (#583)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome authored Feb 19, 2024
1 parent 25832c6 commit 187aafc
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
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:
Expand All @@ -42,15 +58,6 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Create/Update Draft
uses: lucacome/[email protected]
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

Expand Down

0 comments on commit 187aafc

Please sign in to comment.