Skip to content

Commit 18453ea

Browse files
committed
Add author and email for the dch command
ONE-DCO-1.0-Signed-off-by: Seungho Henry Park <shs.park@samsung.com>
1 parent 481b15e commit 18453ea

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/build-circle-intp.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ on:
1414
cirint_description:
1515
description: 'Description of changelog for circle-interpreter'
1616
required: true
17+
deb_fullname:
18+
description: 'Full name of Debian package author'
19+
required: false
20+
default: 'On-device AI developers'
21+
deb_email:
22+
description: 'Email address of Debian package author'
23+
required: false
24+
default: 'nnfw@samsung.com'
1725

1826
defaults:
1927
run:
@@ -108,9 +116,10 @@ jobs:
108116
run: |
109117
cd ${{ env.NNCC_BUILD }}/${{ env.CIRINTP_PREFIX }}
110118
cp -rf ../../infra/debian/circle-interpreter ./debian
111-
ls -alh # TODO remove this
112119
release_date=$(date +%Y%m%d)
113120
version=${{ inputs.cirint_version }}~${release_date}
121+
export DEBFULLNAME="${{ inputs.deb_fullname }}"
122+
export DEBEMAIL="${{ inputs.deb_email }}"
114123
dch -v "${version}" "${{ inputs.cirint_description }}" -b
115124
cat debian/changelog # TODO remove this
116125
@@ -119,9 +128,7 @@ jobs:
119128
120129
cd ${{ env.CIRINTP_PREFIX }}
121130
debuild -S -sa
122-
ls -alh # TODO remove this
123-
cd ../ # TODO remove this
124-
ls -alh # TODO remove this
131+
125132
# dput ppa:circletools/nightly circle-interpreter_${version}_source.changes
126133
127134
# refer https://docs.github.com/en/rest/issues/comments?apiVersion=2022-11-28#update-an-issue-comment

0 commit comments

Comments
 (0)