diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/debian.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 3a1f781..1e6be40 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -20,12 +20,12 @@ jobs: - name: Build package run: | + cd ucode/ export DEBFULLNAME=CI export DEBEMAIL=autobuild@invalid export GITVERSION=$(git describe --long --tags) export DEBVERSION=${GITVERSION#v} - cd ucode/ - dch -v ${DEBVERSION%-*} "Autobuild of $GITVERSION" + dch -v "${DEBVERSION%-*}" "Autobuild of $GITVERSION" dpkg-buildpackage -b -us -uc - name: Archive code coverage results |