Skip to content

Commit 78acf4b

Browse files
committed
release corrected
1 parent 187c9c5 commit 78acf4b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/release.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
run: |
3131
cd ${{ github.workspace }}
3232
./release.sh ${{ env.tag }}
33-
tree
3433
3534
- name: Create Release
3635
id: create_release
@@ -51,6 +50,6 @@ jobs:
5150
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5251
with:
5352
upload_url: ${{ steps.create_release.outputs.upload_url }}
54-
asset_path: ./libaloo-v${{ env.tag }}-$(arch).deb
55-
asset_name: libaloo-v${{ env.tag }}-$(arch).deb
53+
asset_path: ./libaloo-v${{ env.tag }}.deb
54+
asset_name: libaloo-v${{ env.tag }}.deb
5655
asset_content_type: application/vnd.debian.binary-package

release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Architecture: all
4949
Maintainer: Jaipal <[email protected]>
5050
Description: This a library based on Gtk4 written in C to make things easier
5151
Depends: libgtk-4-dev, libsqlite3-dev, python3, python3-pip" >DEBIAN/control
52-
sudo dpkg-deb --root-owner-group --build . libaloo-v$1-$(arch).deb
52+
sudo dpkg-deb --root-owner-group --build . libaloo-v$1.deb
5353
elif [ $(which rpm) && $(which dnf) ]; then
5454
mkdir SPECS
5555
echo "Name: aloo

0 commit comments

Comments
 (0)