fix failure caused by the artifact upload step using an invalid path pattern
This commit is contained in:
parent
800d271cb8
commit
32cf99b699
7
.github/workflows/test-release.yml
vendored
7
.github/workflows/test-release.yml
vendored
@ -33,9 +33,14 @@ jobs:
|
||||
echo "=== Package contents ==="
|
||||
dpkg-deb --contents ../*.deb
|
||||
|
||||
- name: Collect deb artifacts
|
||||
run: |
|
||||
mkdir -p artifacts
|
||||
cp ../*.deb artifacts/
|
||||
|
||||
- name: Upload deb as artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: test-build-deb
|
||||
path: "../*.deb"
|
||||
path: artifacts/*.deb
|
||||
retention-days: 3
|
||||
Loading…
Reference in New Issue
Block a user