Skip to content

Commit 86f48be

Browse files
authored
fix: pypi-publish.yml
존재하지 않는 script 호출을 삭제
1 parent 72715d4 commit 86f48be

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/pypi-publish.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,12 @@ jobs:
2929
- name: Extract tag name
3030
id: tag
3131
run: echo ::set-output name=TAG_NAME::$(echo $GITHUB_REF | cut -d / -f 3)
32-
- name: Build Package python-version
33-
env:
34-
GITHUB_ACTION_TAG_NAME: "${{ steps.tag.outputs.TAG_NAME }}"
35-
run: |
36-
echo "$GITHUB_ACTION_TAG_NAME"
37-
python build_package_version.py -i openexr_python/__init__.py
3832
- name: Install dependencies
3933
run: |
4034
pip install build
4135
- name: Build package
42-
run: python build_package.py
36+
run: |
37+
python build_package.py
4338
- name: Publish package
4439
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
4540
with:

0 commit comments

Comments
 (0)