From 19da710664adef6f8a21e610895d9f6824869bca Mon Sep 17 00:00:00 2001 From: Jozef Kruszynski <60214390+jozefKruszynski@users.noreply.github.com> Date: Thu, 17 Aug 2023 15:03:31 +0100 Subject: [PATCH] Re-add addon update action to ci (#849) Co-authored-by: jkruszynski --- .github/workflows/release.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fba86b63..85f3248a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -101,12 +101,12 @@ jobs: 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.PRIVILEGED_GITHUB_TOKEN }} - # new_release_version: ${{ needs.build-and-publish-pypi.outputs.version }} + addon-version-update: + name: Server repo PR + needs: [ build-and-publish-pypi, build-and-push-container-image ] + runs-on: ubuntu-latest + steps: + - uses: music-assistant/addon-update-action@main + with: + github_token: ${{ secrets.PRIVILEGED_GITHUB_TOKEN }} + new_release_version: ${{ needs.build-and-publish-pypi.outputs.version }} -- 2.34.1