Skip to content

Commit

Permalink
feat(actions): generate release notes for GitHub releases
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Sep 18, 2024
1 parent 13a0e91 commit e116b32
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -784,3 +784,16 @@ jobs:
run: .github/bin/get-buildx-args publish
- name: Publish the Docker images
run: .github/bin/docker-build publish

release_github:
runs-on: ubuntu-22.04
name: Create release on GitHub
permissions:
contents: write
needs:
- push_github
if: ${{ (startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/main')) && github.repository == 'WeblateOrg/docker' }}
steps:
- uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true

0 comments on commit e116b32

Please sign in to comment.