diff --git a/.ci/configure_git.sh b/.ci/configure_git.sh index 95b90eb..f784696 100755 --- a/.ci/configure_git.sh +++ b/.ci/configure_git.sh @@ -1,6 +1,6 @@ set -e eval $(ssh-agent -s) -echo "$SSH_DEPLOY_KEY" | base64 -d | tr -d '\r' | ssh-add - > /dev/null +echo "$DEPLOY_SSH_KEY" | tr -d '\r' | ssh-add - > /dev/null mkdir -p ~/.ssh chmod 700 ~/.ssh diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index cba75c4..38f4bb1 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -14,7 +14,7 @@ jobs: - name: Setup git credentials and committer run: .ci/configure_git.sh env: - SSH_DEPLOY_KEY: ${{ secrets.ssh_deploy_key }} + DEPLOY_SSH_KEY: ${{ secrets.deploy_ssh_key }} - name: Clone build repository uses: actions/checkout@v4 with: