Skip to content

Commit e61d575

Browse files
committed
ci: upload fix
1 parent 48dd2f3 commit e61d575

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
pip install --find-links=dist materialyoucolor --no-index
3838
python tests/test_all.py test_image.jpg 1
3939
- name: Upload artifacts
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: dist
4343
path: dist

.github/workflows/linux.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
curl -L -o test_image.jpg "https://unsplash.com/photos/zQLd8RXbenw/download?ixid=M3wxMjA3fDB8MXx0b3BpY3x8NnNNVmpUTFNrZVF8fHx8fDJ8fDE3MzY0MDA3NTd8&force=true&w=2400"
1919
- name: Setup, Build, Test and Audit
2020
run: |
21-
python_versions=("cp39" "cp310" "cp311" "cp312" "cp313")
21+
python_versions=("cp310" "cp311" "cp312" "cp313" "cp39")
2222
for version in "${python_versions[@]}"; do
2323
2424
/opt/python/$version-$version/bin/pip install --upgrade pip setuptools rich wheel requests pillow
@@ -40,7 +40,6 @@ jobs:
4040
4141
- name: Publish to PyPI
4242
uses: pypa/[email protected]
43-
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
4443
with:
4544
user: __token__
4645
password: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)