Skip to content

Commit 613927f

Browse files
committed
chore: add Radxa 2026 key
Signed-off-by: ZHANG Yuntian <yt@radxa.com>
1 parent 6bea630 commit 613927f

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/share/rsdk/infra-repo/.github/workflows/build.yaml.jsonnet

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,14 @@ function(
8484
APTLY_PATH=/tmp/aptly/xc-out/*/linux_amd64
8585
export PATH="$APTLY_PATH:$PATH"
8686
87+
cat << EOF | gpg --import
88+
${{ secrets.RADXA_APT_KEY_2024 }}
89+
EOF
8790
cat << EOF | gpg --import
8891
${{ secrets.GPG_KEY }}
8992
EOF
9093
cat << EOF | gpg --import
91-
${{ secrets.RADXA_APT_KEY_2024 }}
94+
${{ secrets.RADXA_APT_KEY_2026 }}
9295
EOF
9396
9497
suites=(

src/share/rsdk/infra-repo/.github/workflows/update.yaml.jsonnet

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ function(
3737
with: {
3838
script: |||
3939
const secrets = JSON.parse(process.env.SECRETS);
40-
if (secrets.GPG_KEY === undefined || secrets.RADXA_APT_KEY_2024 === undefined) {
40+
if (secrets.RADXA_APT_KEY_2024 === undefined ||
41+
secrets.GPG_KEY === undefined ||
42+
secrets.RADXA_APT_KEY_2026 === undefined) {
4143
core.setFailed('Required secrets are unset!');
4244
}
4345
|||,

0 commit comments

Comments
 (0)