From 83aa0428348c9ee1709b0a313d05af936ec16c7a Mon Sep 17 00:00:00 2001 From: felegy Date: Fri, 29 Aug 2025 11:51:19 +0000 Subject: [PATCH] + ADD Build variables --- .github/workflows/cicd.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 1c0f33e..4fb4cab 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -8,8 +8,8 @@ on: env: DESCRIPTION: "Wordpress Heroku App Image https://hvgblog.hu" - PHP_VERSION: 8.3 - + PHP_VERSION: ${{ vars.PHP_VERSION }} + DEPLOY_REPO: ${{ vars.DEPLOY_REPO }} jobs: check: @@ -62,9 +62,9 @@ jobs: - uses: felegy/mirror-action@master with: - REMOTE: git@${{ secrets.DEPLOY_REPO }}:${{ github.repository }}.git + REMOTE: git@${{ env.DEPLOY_REPO }}:${{ github.repository }}.git SSH_CONFIG: | - Host ${{ secrets.DEPLOY_REPO }} + Host ${{ env.DEPLOY_REPO }} ProxyCommand cloudflared access ssh --hostname %h GIT_SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_SSH_KEY }} GIT_SSH_NO_VERIFY_HOST: "true"