From d764da940bdd37ce1a37508c1c54c31b9b243de9 Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Mon, 17 Apr 2023 10:35:22 -0700 Subject: [PATCH] Fix deploy process. (#1109) --- .github/workflows/ci-cd.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 55f95b17a..906e07179 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -67,6 +67,12 @@ jobs: - name: Build Distribution run: | make package + - name: Upload Package Artifacts + uses: actions/upload-artifact@v3 + with: + name: package + path: dist + coveralls: name: Finish Coveralls @@ -87,6 +93,10 @@ jobs: if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') needs: [build] steps: + - name: Get Package Artifacts + uses: actions/download-artifact@v3 + with: + name: package - name: Publish Package uses: pypa/gh-action-pypi-publish@v1.8.5 with: