Skip to content

Commit

Permalink
refactor: use consistent debian/changelog creation for release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed Nov 10, 2023
1 parent 99e7677 commit d65d192
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
sudo apt-get -y update
sudo apt-get -y install debhelper devscripts
REL_VER=$(grep "^readonly VERSION" quickemu | cut -d'"' -f2)
dch -v "${REL_VER}-1" --distribution=unstable "New upstream release."
rm debian/changelog
dch --package quickemu --newversion="${REL_VER}-1" --distribution=unstable "New upstream release." --create
dpkg-buildpackage --build=binary --no-check-builddeps --compression=gzip
gh release upload "${{ github.ref }}" "../quickemu_${REL_VER}-1_all.deb" --clobber
Expand Down

0 comments on commit d65d192

Please sign in to comment.