From ea22a85ffbd11e464ea322923422b5793182557e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janez=20Dem=C5=A1ar?= Date: Sat, 14 Feb 2026 16:38:22 +0100 Subject: [PATCH 1/2] Use GitHub secrets for deployment credentials Updated deployment configuration to use GitHub secrets for server and user credentials. --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d40426d..99e2f57 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,8 +10,8 @@ jobs: deploy: runs-on: ubuntu-latest env: - DEPLOY_SERVER: 193.2.72.46 - DEPLOY_USER: notes-deploy-user + DEPLOY_SERVER: $${ secrets.NOTES_DEPLOY_IP }} + DEPLOY_USER: ${{ secrets.NOTES_DEPLOY_USER }} steps: - name: Set up SSH key From e2258ab0ebcfc09893e6524d78e739694c0752fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janez=20Dem=C5=A1ar?= Date: Sat, 14 Feb 2026 16:40:35 +0100 Subject: [PATCH 2/2] Fix syntax error in deploy.yml for DEPLOY_SERVER --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 99e2f57..5dc10b7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,7 +10,7 @@ jobs: deploy: runs-on: ubuntu-latest env: - DEPLOY_SERVER: $${ secrets.NOTES_DEPLOY_IP }} + DEPLOY_SERVER: ${{ secrets.NOTES_DEPLOY_IP }} DEPLOY_USER: ${{ secrets.NOTES_DEPLOY_USER }} steps: