Skip to content

Commit 4f720ba

Browse files
NicklasTegnerNicklasTegner
authored andcommitted
updated workflow v5
1 parent c0ba840 commit 4f720ba

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

‎.github/workflows/continuous-deployment.yaml‎

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,26 @@ jobs:
3939
run: python setup.py sdist bdist_wheel
4040
- name: Build binary Archive
4141
run: python setup_binary.py download_pandoc bdist_wheel
42+
- name: Upload artifacts
43+
uses: actions/upload-artifact@v3
44+
with:
45+
name: python-package-distributions
46+
path: dist/
47+
48+
publisher:
49+
needs: [builder]
50+
runs-on: ubuntu-latest
51+
steps:
52+
- name: Check out repository
53+
uses: actions/checkout@v3
54+
- name: Check out repository
55+
uses: actions/download-artifact@v3
56+
with:
57+
name: python-package-distributions
58+
path: dist/
4259
- name: Publish to PyPI
4360
uses: pypa/gh-action-pypi-publish@release/v1
4461
with:
45-
skip_existing: true
4662
verbose: true
4763
user: __token__
4864
password: ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)