From b65546b69adaa0153e16266df49e29bfa9a250f8 Mon Sep 17 00:00:00 2001 From: Aron de Jong Date: Wed, 24 Jul 2024 18:47:22 +0200 Subject: [PATCH] Fix AUR deploy step (#12013) Due to some changes somewhere, the deploy step for the AUR was broken with error `Unknown key type "dsa"`. Since we just use a `rsa` key, I have removed all unnecessary options. Fixes yairm210/Unciv#11907 --- .github/workflows/buildAndDeploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildAndDeploy.yml b/.github/workflows/buildAndDeploy.yml index a2e90518b3..92f9e2e122 100644 --- a/.github/workflows/buildAndDeploy.yml +++ b/.github/workflows/buildAndDeploy.yml @@ -316,6 +316,6 @@ jobs: Update to ${{ github.ref_name }} ${{needs.get-release-body.outputs.release_body}} - ssh_keyscan_types: rsa,dsa,ecdsa,ed25519 + ssh_keyscan_types: rsa updpkgsums: true allow_empty_commits: false