diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-03-31 12:16:04 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2022-03-31 12:16:33 +0200 |
commit | df6b86173c4979aea636907b8f3fb4d0c855ea94 (patch) | |
tree | ab3b8d04e6aef2cd3455a992927669842a6b892f /.github | |
parent | dfaf05a10b7296744f3924acfa2cebe83a565153 (diff) |
ci: debian: change path before attempting to invoke Git operations
Fixes: dfaf05a ("ci: debian: automatically update changelog from Git tag")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
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 |