Skip to content

Commit

Permalink
修正
Browse files Browse the repository at this point in the history
  • Loading branch information
melpon committed Jun 17, 2023
1 parent 0167702 commit c0a953e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,10 @@ jobs:
with:
name: ${{ matrix.platform.name }}_python-${{ matrix.python_version }}
path: dist
- run: mv dist/*.tar.gz ./
- run: |
if [ -e dist/*.tar.gz ]; then
mv dist/*.tar.gz ./
fi
# matrix の中で1個だけソースディストリビューション用のデータを残しておく
- run: mv *.tar.gz dist/
if: ${{ matrix.platform.name == 'macos-13_arm64' && matrix.python_version == '3.8' }}
Expand All @@ -183,6 +186,13 @@ jobs:
# with:
# name: ${{ matrix.platform.name }}_python-${{ matrix.python_version }}
# path: dist
# - run: |
# if [ -e dist/*.tar.gz ]; then
# mv dist/*.tar.gz ./
# fi
# # matrix の中で1個だけソースディストリビューション用のデータを残しておく
# - run: mv *.tar.gz dist/
# if: ${{ matrix.platform.name == 'macos-13_arm64' && matrix.python_version == '3.8' }}
# - name: Publish package to TestPyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
Expand Down

0 comments on commit c0a953e

Please sign in to comment.