Skip to content
This repository was archived by the owner on Mar 8, 2022. It is now read-only.

Commit 234fd35

Browse files
Update main.yml
1 parent 4c4fadc commit 234fd35

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
build:
1818
# The type of runner that the job will run on
1919
runs-on: ubuntu-latest
20-
2120
# Steps represent a sequence of tasks that will be executed as part of the job
2221
steps:
2322
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -31,18 +30,15 @@ jobs:
3130
python3 -m pip install build
3231
python3 -m pip install twine
3332
- name: Build Artifact
34-
env:
35-
TWINE_PASSWORD: ${{ secrets.PYPI_TEST_TOKEN }}
36-
TWINE_USERNAME: __token__
3733
run: |
3834
python3 -m build
3935
4036
- name: Upload Artifact to PyPI
4137
env:
42-
TWINE_PASSWORD: ${{ secrets.PYPI_TEST_TOKEN }}
38+
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
4339
TWINE_USERNAME: __token__
4440
run: |
45-
python3 -m twine upload --repository testpypi dist/*
41+
python3 -m twine upload dist/*
4642
- name: Upload a Build Artifact
4743
uses: actions/[email protected]
4844
with:

0 commit comments

Comments
 (0)