mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
refactor: use consistent debian/changelog creation for release workflow
This commit is contained in:
parent
99e7677665
commit
d65d19211b
1 changed files with 2 additions and 1 deletions
3
.github/workflows/publish-release.yml
vendored
3
.github/workflows/publish-release.yml
vendored
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue