Fix deprecated set-output

This commit is contained in:
Dennis Heinze 2023-05-22 08:44:33 +02:00
parent bd887fa3fc
commit e2515272f8
No known key found for this signature in database
GPG key ID: D74FB5DB42CAD9A1
11 changed files with 29 additions and 29 deletions
build/targets

View file

@ -49,9 +49,9 @@ main() {
echo "[+] Finished building OpenSSH ${CURRENT_ARCH}"
OPENSSH_VERSION=$(echo $OPENSSH_VERSION | sed 's/-//')
echo ::set-output name=PACKAGED_NAME::"${OPENSSH_VERSION}"
echo ::set-output name=PACKAGED_NAME_PATH::"/output/*"
echo ::set-output name=PACKAGED_VERSION::"${version_number}"
echo "PACKAGED_NAME=${OPENSSH_VERSION} >> $GITHUB_OUTPUT"
echo "PACKAGED_NAME_PATH=/output/* >> $GITHUB_OUTPUT"
echo "PACKAGED_VERSION=${version_number} >> $GITHUB_OUTPUT"
}
main