From: Marcel van der Veldt Date: Tue, 5 Apr 2022 09:35:56 +0000 (+0200) Subject: fix CI X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=6f25c304c056d15e14d5a26cc47070fd6c13cbb3;p=music-assistant-server.git fix CI --- diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index a7352b9c..1737036a 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,9 +1,8 @@ -change-template: "- #$NUMBER - $TITLE (@$AUTHOR)" categories: - - title: "⚠ Breaking Changes" + - title: "⬆️ Dependencies" + collapse-after: 1 labels: - - "breaking change" + - "dependencies" template: | - ## What’s Changed - - $CHANGES + ## What's Changed + $CHANGES \ No newline at end of file diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index a5d952e0..8fadfb1f 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v1 with: - python-version: '3.10' + python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 19539daa..c392e6ed 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.10'] + python-version: ['3.9', '3.10'] steps: - uses: actions/checkout@v3