File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 3636 run : |
3737 pip install --find-links=dist materialyoucolor --no-index
3838 python tests/test_all.py test_image.jpg 1
39+ - name : Upload artifacts
40+ uses : actions/upload-artifact@v4
41+ with :
42+ name : " artifact-python${{ matrix.python-version }}-os${{ matrix.os }}.tar.gz"
43+ path : dist
44+ deploy :
45+ name : Publish to PyPI
46+ runs-on : ubuntu-latest
47+ needs : build
48+ steps :
49+ - name : Checkout
50+ uses : actions/checkout@v2
51+ - name : Download artifacts
52+ uses : actions/download-artifact@v4
53+ with :
54+ name : " artifact-python${{ matrix.python-version }}-os${{ matrix.os }}.tar.gz"
55+ path : dist
3956 - name : Publish to PyPI
40574158 with :
4259 user : __token__
4360 password : ${{ secrets.PYPI_TOKEN }}
4461 packages_dir : dist/
62+
You can’t perform that action at this time.
0 commit comments