Skip to content

Commit 6baa2d5

Browse files
authored
Merge pull request #26 from Blue-Yonder-OSS/publis-error-v1_master
Added verbose true to identify the bug
2 parents 824df86 + f8d4721 commit 6baa2d5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v3
1212
- name: Set up Python
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v3
1414
with:
15-
python-version: '3.x'
15+
python-version: '3.9'
1616
- name: Install dependencies
1717
run: |
1818
python -m pip install --upgrade pip
1919
python -m pip install build wheel twine
20-
python -m pip install --upgrade setuptools wheel twine
20+
python -m pip install --upgrade setuptools build wheel twine
2121
- name: Build package
2222
run: |
2323
python -m build
@@ -27,4 +27,5 @@ jobs:
2727
with:
2828
user: __token__
2929
password: ${{ secrets.STOREFACT_PYPI }}
30-
verify_metadata: false
30+
verify_metadata: false
31+
verbose: true

0 commit comments

Comments
 (0)