Skip to content

Commit 045ffb9

Browse files
committed
deploy release
1 parent c539536 commit 045ffb9

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/main.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010
- name: Install dependencies
1111
run: |
1212
make deps
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- name: Set up Python
2525
uses: actions/setup-python@v2
2626
with:
@@ -34,21 +34,21 @@ jobs:
3434
needs: [lint, test]
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v4
3838
- name: Install dependencies
3939
run: |
4040
make deps
4141
- name: Build package
4242
run: >-
4343
make build
44-
- name: Publish package to Test PyPI (always)
45-
uses: pypa/gh-action-pypi-publish@release/v1
46-
with:
47-
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
48-
repository_url: https://test.pypi.org/legacy/
49-
skip_existing: true
44+
# - name: Publish package to Test PyPI (always)
45+
# uses: pypa/gh-action-pypi-publish@release/v1
46+
# with:
47+
# password: ${{ secrets.TEST_PYPI_API_TOKEN }}
48+
# repository_url: https://test.pypi.org/legacy/
49+
# skip_existing: true
5050
- name: Publish package to PyPI (only if pushing a tag)
51-
if: startsWith(github.ref, 'refs/tags')
51+
# if: startsWith(github.ref, 'refs/tags')
5252
uses: pypa/gh-action-pypi-publish@release/v1
5353
with:
5454
password: ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)