Skip to content

Commit 83ebb14

Browse files
authored
Update publish workflow (#3755)
* remove api token to publish to pypi * update version string to 1.6.3
1 parent c5bd24c commit 83ebb14

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,10 @@ jobs:
7777
file_glob: true
7878
- name: Publish package distributions to PyPI
7979
if: ${{ steps.check-tag.outputs.match != '' }}
80-
uses: pypa/gh-action-pypi-publish@e53eb8b103ffcb59469888563dc324e3c8ba6f06 # v1.8.12
81-
with:
82-
password: ${{ secrets.PYPI_API_TOKEN }}
80+
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
8381
- name: Publish package distributions to TestPyPI
8482
if: ${{ steps.check-tag.outputs.match == '' }}
85-
uses: pypa/gh-action-pypi-publish@e53eb8b103ffcb59469888563dc324e3c8ba6f06 # v1.8.12
83+
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
8684
with:
87-
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
8885
repository-url: https://test.pypi.org/legacy/
8986
verbose: true

src/otx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# Copyright (C) 2021-2023 Intel Corporation
44
# SPDX-License-Identifier: Apache-2.0
55

6-
__version__ = "1.6.3rc0"
6+
__version__ = "1.6.3"
77
# NOTE: Sync w/ src/otx/api/usecases/exportable_code/demo/requirements.txt on release
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
openvino==2023.3.0
22
openvino-model-api==0.1.9.1
3-
otx==1.6.3rc0
3+
otx==1.6.3
44
numpy>=1.21.0,<=1.23.5 # np.bool was removed in 1.24.0 which was used in openvino runtime

0 commit comments

Comments
 (0)