From 95b3b157842f8bdbf386aafb011d12f82622e3c9 Mon Sep 17 00:00:00 2001 From: Jozef Kruszynski <60214390+jozefKruszynski@users.noreply.github.com> Date: Sat, 5 Aug 2023 23:41:39 +0200 Subject: [PATCH] add job to update addon version (#822) * add job to update addon version * fix lint --------- Co-authored-by: jkruszynski --- .github/workflows/release.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 970240e1..17d79818 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -100,3 +100,13 @@ jobs: labels: ${{ steps.meta.outputs.labels }} build-args: | "MASS_VERSION=${{ needs.build-and-publish-pypi.outputs.version }}" + + addon-version-update: + name: Server repo PR + needs: build-and-publish-pypi + runs-on: ubuntu-latest + steps: + - uses: music-assistant/addon-update-action@main + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + new_release_version: ${{ needs.build-and-publish-pypi.outputs.version }} -- 2.34.1