This commit is contained in:
Jamie Schouten 2025-02-10 17:17:10 +01:00
parent 176e909c65
commit a5f57a6b44

@ -66,6 +66,11 @@ jobs:
${{ secrets.ssh-private-key }}
${{ vars.QORE_FRONTEND_DEPLOY_TOKEN }}
- name: Disable strict host key checking
run: |
echo "Host *" >> ~/.ssh/config
echo " StrictHostKeyChecking no" >> ~/.ssh/config
- name: Clone frontend
run: git clone --depth 1 --branch ${{ steps.get-version.outputs.version }} git@git.qlic.nl:qore/qore-frontend.git frontend/src/qore
@ -94,10 +99,5 @@ jobs:
${{ inputs.node-package-manager }} run build
fi
- name: Disable strict host key checking
run: |
echo "Host *" >> ~/.ssh/config
echo " StrictHostKeyChecking no" >> ~/.ssh/config
- name: Deploy
run: vendor/bin/dep deploy environment="${{ inputs.environment }}"