From 3ff1738151b7990e8a9c0ed3b1f18fc94e3729c9 Mon Sep 17 00:00:00 2001 From: pytest bot Date: Sun, 12 Feb 2023 20:25:52 -0300 Subject: [PATCH] Download package --- .github/workflows/deploy.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b7b2a02e5..252809946 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,11 +31,27 @@ jobs: - name: Build and Check Package uses: hynek/build-and-inspect-python-package@v1.5 + - name: Download Package + uses: actions/download-artifact@v3 + with: + name: Packages + path: dist + - name: Publish package to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.pypi_token }} + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.7" + + - name: Install tox + run: | + python -m pip install --upgrade pip + pip install --upgrade tox + - name: Publish GitHub release notes env: GH_RELEASE_NOTES_TOKEN: ${{ github.token }}