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 36
36
run : |
37
37
pip install --find-links=dist materialyoucolor --no-index
38
38
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
39
56
- name : Publish to PyPI
40
57
uses : pypa/gh-action-pypi-publish@v1.5.0
41
58
with :
42
59
user : __token__
43
60
password : ${{ secrets.PYPI_TOKEN }}
44
61
packages_dir : dist/
62
+
You can’t perform that action at this time.
0 commit comments