Skip to content

Commit

Permalink
Fix apt update script
Browse files Browse the repository at this point in the history
  • Loading branch information
f0reachARR committed Sep 18, 2024
1 parent 8197ba3 commit 2447c88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions buildroot/deb-s3/entrypoint.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

set -e
echo "$INPUT_GPG_PRIVATE_KEY" | gpg --import || true
CODENAME=${INPUT_CODENAME:-jammy}
deb-s3 upload --bucket $INPUT_S3_BUCKET \
--access-key-id $INPUT_S3_ACCESS_KEY_ID \
--secret-access-key $INPUT_S3_ACCESS_KEY_SECRET \
--component main \
--endpoint $INPUT_S3_ENDPOINT \
--sign $INPUT_GPG_FINGERPRINT \
--codename $CODENAME \
--codename $INPUT_CODENAME \
$INPUT_INPUT_DIR/*.deb
1 change: 1 addition & 0 deletions update_apt_repo/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ inputs:
description: "GPG fingerprint"
codename:
description: Ubuntu codename
default: "jammy"

runs:
using: "docker"
Expand Down

0 comments on commit 2447c88

Please sign in to comment.