Skip to content

Commit

Permalink
Fix deploy process. (#1109)
Browse files Browse the repository at this point in the history
  • Loading branch information
arkid15r authored Apr 17, 2023
1 parent a95c764 commit d764da9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/[email protected]
with:
Expand Down

0 comments on commit d764da9

Please sign in to comment.