From e29760a7868eb934c6551e0d4f6a772183caa3c7 Mon Sep 17 00:00:00 2001
From: Petro Protsakh
Date: Thu, 3 Oct 2024 12:40:33 +0300
Subject: [PATCH 1/2] Bump GH Actions
---
.github/workflows/default.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml
index b3d7fba..f6a9175 100644
--- a/.github/workflows/default.yml
+++ b/.github/workflows/default.yml
@@ -45,7 +45,7 @@ jobs:
pytest --doctest-modules -o junit_family=xunit2 --junitxml=junit/test-results-${{ matrix.python-version }}.xml
- name: Upload pytest test results
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: pytest-results-${{ matrix.python-version }}
path: junit/test-results-${{ matrix.python-version }}.xml
@@ -96,7 +96,7 @@ jobs:
CIBW_SKIP: "pp* *-musllinux*"
CIBW_ARCHS_MACOS: ${{ matrix.buildplat[2] }}
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
with:
name: wheels
path: ./wheelhouse/*.whl
@@ -108,7 +108,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/download-artifact@v2
+ - uses: actions/download-artifact@v4
with:
name: wheels
path: dist
From 5aa6928a89ba59dbcfbca9ac40b984d2b6cd5c34 Mon Sep 17 00:00:00 2001
From: Petro Protsakh
Date: Thu, 3 Oct 2024 15:20:09 +0300
Subject: [PATCH 2/2] Bump GH Actions
---
.github/workflows/default.yml | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml
index f6a9175..142fef2 100644
--- a/.github/workflows/default.yml
+++ b/.github/workflows/default.yml
@@ -98,7 +98,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
- name: wheels
+ name: wheels-${{ matrix.python }}-${{ matrix.buildplat[1] }}-${{ matrix.buildplat[2] }}
path: ./wheelhouse/*.whl
upload:
@@ -110,7 +110,8 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
- name: wheels
+ pattern: wheels-*
+ merge-multiple: true
path: dist
- name: Display structure of downloaded files
@@ -119,6 +120,6 @@ jobs:
- uses: pypa/gh-action-pypi-publish@release/v1
if: startsWith(github.ref, 'refs/tags/')
with:
- skip_existing: true
+ skip-existing: true
user: ${{ secrets.PYPI_USERNAME }}
password: ${{ secrets.PYPI_PASSWORD }}