We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6921c83 commit 4163542Copy full SHA for 4163542
.github/workflows/build-deb.yml
@@ -36,12 +36,16 @@ jobs:
36
with:
37
fetch-depth: 0
38
39
+ - name: Commit Hash
40
+ id: commit
41
+ uses: prompt/actions-commit-hash@v3.0.0
42
+
43
- name: Build package
44
uses: jtdor/build-deb-action@v1
45
46
docker-image: debian:${{ matrix.dist }}-slim
47
buildpackage-opts: --build=binary --no-sign
- before-build-hook: debchange --controlmaint --local "+${{ github.sha }}~${{ matrix.dist }}" -b --distribution ${{ matrix.dist }} "CI build"
48
+ before-build-hook: debchange --controlmaint --local "+${{ steps.commit.outputs.short }}~${{ matrix.dist }}" -b --distribution ${{ matrix.dist }} "CI build"
49
extra-build-deps: devscripts git
50
51
- name: Upload package
0 commit comments