Skip to content

Commit

Permalink
Fixed release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
reitzrobert77 authored Aug 4, 2023
1 parent 3627628 commit 6e27087
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:

- name: Build package
run: |+
TAG=${{ github.ref_name }}
debuild -i -uc -us -b
cd ..
echo "Result: $(ls *.deb)"
sha512sum *.deb > checksums.txt
cp *.deb checksums.txt ${{ github.workspace }}/
cd ${{ github.workspace }}
gh release delete $TAG || true
gh release create $TAG --generate-notes *.deb checksums.txt
gh release create $TAG --generate-notes ../*.deb ../checksums.txt
env:
GH_TOKEN: ${{ github.token }}

Expand Down

0 comments on commit 6e27087

Please sign in to comment.