Skip to content

Commit 8b79f2b

Browse files
committed
lets actually fix the file this time
1 parent e13248a commit 8b79f2b

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/build_arm64.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,11 @@ jobs:
2525
with:
2626
buildpackage-opts: --build=binary --no-sign --build-profiles=rtlsdr
2727

28-
- name: Locate artifacts
29-
run: ls -alR
30-
3128
- uses: actions/upload-artifact@v4
3229
with:
3330
name: artifact-deb
3431
path: |
35-
*.deb
32+
./debian/artifacts/*.deb
3633
3734
- name: Create Release
3835
id: create_release
@@ -45,13 +42,15 @@ jobs:
4542
draft: false
4643
prerelease: false
4744

45+
- name: Locate artifacts
46+
run: ls -alR
47+
4848
- name: Upload Release Asset
4949
id: upload-release-asset
5050
uses: svenstaro/upload-release-action@v2
5151
with:
5252
repo_token: ${{ secrets.GITHUB_TOKEN }}
53-
file: |
54-
*.deb
53+
file: ./debian/artifacts/*.deb
5554
tag: ${{ github.ref }}
5655
overwrite: true
5756
file_glob: true

0 commit comments

Comments
 (0)