@@ -93,38 +93,38 @@ jobs:
9393 echo "All jobs passed successfully."
9494 fi
9595
96- deploy :
97- name : Build and publish to PyPI
98-
99- needs : check-static-and-test-status
100-
101- if : contains(github.ref, 'tags/v')
102-
103- runs-on : ubuntu-latest
104-
105- steps :
106- - uses : actions/checkout@v2
107-
108- - uses : actions/setup-python@v2
109- with :
110- python-version : 3.9
111-
112- - name : Install dependencies
113- run : pip install -U setuptools wheel build
114-
115- - name : Build the package
116- run : python -m build
117-
118- - name : Publish to PyPI
119- uses : pypa/gh-action-pypi-publish@v1.4.2
120- with :
121- user : __token__
122- password : ${{ secrets.PYPI_API_TOKEN }}
96+ # deploy:
97+ # name: Build and publish to PyPI
98+ #
99+ # needs: check-static-and-test-status
100+ #
101+ # if: contains(github.ref, 'tags/v')
102+ #
103+ # runs-on: ubuntu-latest
104+ #
105+ # steps:
106+ # - uses: actions/checkout@v2
107+ #
108+ # - uses: actions/setup-python@v2
109+ # with:
110+ # python-version: 3.9
111+ #
112+ # - name: Install dependencies
113+ # run: pip install -U setuptools wheel build
114+ #
115+ # - name: Build the package
116+ # run: python -m build
117+ #
118+ # - name: Publish to PyPI
119+ # uses: pypa/gh-action-pypi-publish@v1.4.2
120+ # with:
121+ # user: __token__
122+ # password: ${{ secrets.PYPI_API_TOKEN }}
123123
124124 docs :
125125 name : Build and publish docs
126126
127- needs : deploy
127+ needs : check-static-and-test-status
128128
129129 runs-on : ubuntu-latest
130130
0 commit comments