Publish deb packages to builds.ci (#4344)

* Publish deb

* Pass secret as argument

* Install cargo-deb
This commit is contained in:
Drazen Urch
2024-01-24 13:18:52 +01:00
committed by GitHub
parent 67132161f4
commit 1948fd8e67
3 changed files with 27 additions and 16 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
#/bin/bash
# Run from repository root
# Needs PPA_SIGNING_KEY base64 encoded in env var
# Takes PPA_SIGNING_KEY base64 encoded as first argument
echo ${PPA_SIGNING_KEY} | base64 -d >ppa-signing-key.asc
echo $1 | base64 -d >ppa-signing-key.asc
gpg --import ppa-signing-key.asc
rm ppa-signing-key.asc