From: Jozef Kruszynski <60214390+jozefKruszynski@users.noreply.github.com> Date: Sat, 5 Aug 2023 21:41:39 +0000 (+0200) Subject: add job to update addon version (#822) X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=95b3b157842f8bdbf386aafb011d12f82622e3c9;p=music-assistant-server.git add job to update addon version (#822) * add job to update addon version * fix lint --------- Co-authored-by: jkruszynski --- 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 }}