Skip to content

Commit 2a89b06

Browse files
committed
Debug release action
1 parent 0b5ac8f commit 2a89b06

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/deploy_after_tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ jobs:
6262
python-version: ${{ matrix.python-version }}
6363
- name: Install build
6464
run: |
65-
pip install --upgrade pip
66-
pip install build
65+
pip install --upgrade pip build
6766
- name: Build a binary wheel and a source tarball
6867
run: |
6968
python -m build --sdist --wheel --outdir dist/ .
69+
git status
7070
- name: Publish distribution to PyPI
7171
if: startsWith(github.ref, 'refs/tags')
7272
uses: pypa/gh-action-pypi-publish@release/v1

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
# compiled python codes
55
*.pyc
6-
pydmd\.egg-info/**
6+
*egg-info/**
7+
dist/**
78

89
.idea/**
910

0 commit comments

Comments
 (0)