Skip to content

Commit 09affcf

Browse files
committed
revise the usage of debuild
ONE-DCO-1.0-Signed-off-by: Seungho Henry Park <shs.park@samsung.com>
1 parent 1b16a2f commit 09affcf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,11 @@ jobs:
133133
echo "${{ secrets.GPG_NNFW_PRIVATE_KEY }}" | gpg --batch --import
134134
gpg --list-secret-keys # TODO remove this
135135
cd ${{ env.CIRINTP_PREFIX }}
136-
debuild -S -sa
136+
GPG_KEY_ID=$(gpg --list-secret-keys --keyid-format=long | grep '^sec' | head -n1 | awk -F'/' '{print $2}' | awk '{print $1}')
137+
DEBSIGN_PROGRAM=gpg \
138+
DEBSIGN_KEYID=${GPG_KEY_ID} \
139+
GPG_TTY=$(tty) \
140+
debuild -S -sa
137141
138142
echo "Upload to Launchpad"
139143
cd ../

0 commit comments

Comments
 (0)