From 02ca6a3072f046c07c939b79946b38e56a0a9e9d Mon Sep 17 00:00:00 2001 From: li0nhunter Date: Tue, 19 Aug 2025 10:50:45 -0400 Subject: [PATCH] Update .gitea/workflows/deploy.yml fix: escape the deploy key var from being replaced --- .gitea/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index f62340e..c6e9cb4 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -19,4 +19,4 @@ jobs: uses: dokku/github-action@master with: git_remote_url: 'ssh://dokku@192.168.1.2:22/$REPO_NAME' - ssh_private_key: ${{ secrets.DOKKU_DEPLOY_KEY }} \ No newline at end of file + ssh_private_key: $${{ secrets.DOKKU_DEPLOY_KEY }} \ No newline at end of file