We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b5ac8f commit 2a89b06Copy full SHA for 2a89b06
.github/workflows/deploy_after_tag.yml
@@ -62,11 +62,11 @@ jobs:
62
python-version: ${{ matrix.python-version }}
63
- name: Install build
64
run: |
65
- pip install --upgrade pip
66
- pip install build
+ pip install --upgrade pip build
67
- name: Build a binary wheel and a source tarball
68
69
python -m build --sdist --wheel --outdir dist/ .
+ git status
70
- name: Publish distribution to PyPI
71
if: startsWith(github.ref, 'refs/tags')
72
uses: pypa/gh-action-pypi-publish@release/v1
.gitignore
@@ -3,7 +3,8 @@
3
4
# compiled python codes
5
*.pyc
6
-pydmd\.egg-info/**
+*egg-info/**
7
+dist/**
8
9
.idea/**
10
0 commit comments