Skip to content

Commit 056dc12

Browse files
committed
chore: use debian email and full name for updating changelog
1 parent 5dcb2af commit 056dc12

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/update-changelog.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ jobs:
2727
uses: actions/checkout@v4
2828

2929
- name: Update Changelog
30-
run: gbp dch --force-distribution --distribution "${{ inputs.distro }}" -N "${{ inputs.version }}" --debian-branch="${{ github.ref_name }}"
30+
run: |
31+
export DEBEMAIL="regolith.linux@gmail.com"
32+
export DEBFULLNAME="Regolith Linux"
33+
34+
gbp dch --force-distribution --distribution "${{ inputs.distro }}" -N "${{ inputs.version }}" --debian-branch="${{ github.ref_name }}"
3135
3236
- name: Push Changes
3337
uses: stefanzweifel/git-auto-commit-action@v5

0 commit comments

Comments
 (0)