fix Py wheel dir; fix regex;

This commit is contained in:
Kenneth Bingham 2024-06-26 17:44:20 -04:00
parent cf7f8d5e54
commit f2bf7ed2a2
No known key found for this signature in database
GPG Key ID: 31709281860130B6
2 changed files with 5 additions and 3 deletions

View File

@ -62,7 +62,7 @@ jobs:
run: |
ls -lR ./download/
mkdir dist
cp ./download/*/* ./dist/
cp ./download/* ./dist/
- name: Publish wheels (TestPYPI)
uses: pypa/gh-action-pypi-publish@release/v1

View File

@ -39,14 +39,16 @@ jobs:
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
version: tags/v${{ steps.semver.outputs.zrok_semver }}
file: zrok*_linux_amd64.tar.gz
file: zrok.*_linux_amd64.tar.gz
regex: true
target: dist/amd64/linux/zrok_linux_amd64.tar.gz
- name: Download Linux ARM64 Release Artifact
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
version: tags/v${{ steps.semver.outputs.zrok_semver }}
file: zrok*_linux_arm64.tar.gz
file: zrok.*_linux_arm64.tar.gz
regex: true
target: dist/arm64/linux/zrok_linux_arm64.tar.gz
- name: Unpack the Release Artifacts