Merging upstream version 1.7.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
41144a7301
commit
476f38f2bb
878 changed files with 2965 additions and 1746 deletions
8
.github/workflows/release-python.yml
vendored
8
.github/workflows/release-python.yml
vendored
|
@ -26,7 +26,7 @@ jobs:
|
|||
- name: Build sdist
|
||||
run: pipx run build --sdist
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
path: dist/*.tar.gz
|
||||
retention-days: 5
|
||||
|
@ -36,7 +36,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
if: startsWith(github.ref, 'refs/tags/v')
|
||||
steps:
|
||||
- uses: actions/download-artifact@v3
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: artifact
|
||||
path: dist
|
||||
|
@ -51,7 +51,7 @@ jobs:
|
|||
upload_pypi:
|
||||
needs: [build_sdist]
|
||||
runs-on: ubuntu-latest
|
||||
if: startsWith(github.ref, 'refs/tags/v')
|
||||
if: startsWith(github.ref, 'refs/tags/v') && github.repository == 'linux-nvme/libnvme'
|
||||
steps:
|
||||
- name: Check if it is a release tag
|
||||
id: check-tag
|
||||
|
@ -60,7 +60,7 @@ jobs:
|
|||
echo ::set-output name=match::true
|
||||
fi
|
||||
- name: Download artifiact
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
if: steps.check-tag.outputs.match == 'true'
|
||||
with:
|
||||
name: artifact
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue