Skip to content

Commit

Permalink
update release action (#898)
Browse files Browse the repository at this point in the history
* update release action

* lint

---------

Co-authored-by: Jozef Kruszynski <[email protected]>
Co-authored-by: Marcel van der Veldt <[email protected]>
  • Loading branch information
3 people authored Oct 27, 2023
1 parent 2433fd0 commit e6d0b69
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,20 @@ jobs:
build-args: |
"MASS_VERSION=${{ needs.build-and-publish-pypi.outputs.version }}"
release-notes-update:
name: Updates the release notes and changelog
needs: [ build-and-publish-pypi, build-and-push-container-image ]
runs-on: ubuntu-latest
steps:
- name: Update changelog and release notes including frontend notes
uses: music-assistant/release-notes-merge-action@main
with:
github_token: ${{ secrets.PRIVILEGED_GITHUB_TOKEN }}
release_tag: ${{ needs.build-and-publish-pypi.outputs.version }}

addon-version-update:
name: Updates the Addon repository with the new version
needs: [ build-and-publish-pypi, build-and-push-container-image ]
needs: [ build-and-publish-pypi, build-and-push-container-image, release-notes-update ]
runs-on: ubuntu-latest
steps:
- name: Push new version number to addon config
Expand Down

0 comments on commit e6d0b69

Please sign in to comment.