diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4e218812..e0457b62 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,7 +30,7 @@ jobs: fetch-depth: 0 - name: Set up Python ${{ matrix.python.version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python.version }} @@ -86,7 +86,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: distributions + name: distributions-${{ matrix.python.version }}-${{ matrix.discord-py.NAME }} path: dist/* upload_pypi: @@ -102,7 +102,7 @@ jobs: submodules: true - name: Set up Python 3.13 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.13' # Watch as I let this get handled as a float again @@ -117,7 +117,8 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v4 with: - name: distributions + pattern: distributions-* + merge-multiple: true path: dist - name: Publish wheels as release artifacts on GitHub @@ -137,7 +138,7 @@ jobs: rm ./dist/*.md - name: Publish packages to PyPI - uses: pypa/gh-action-pypi-publish@v1.8.10 + uses: pypa/gh-action-pypi-publish@v1.10.3 with: user: __token__ password: ${{ secrets.pypi_api_token }}