diff --git a/.gitea/workflows/host.yml b/.gitea/workflows/host.yml index 38b943f..e160999 100644 --- a/.gitea/workflows/host.yml +++ b/.gitea/workflows/host.yml @@ -11,7 +11,10 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v2 - - name: Build project + + - name: Run Ansible Playbook + env: + ANSIBLE_USER: ${{ secrets.ANSIBLE_USER }} + ANSIBLE_HOST_KEY_CHECKING: False run: | - npm install - npm run build \ No newline at end of file + ansible-playbook ansible/site.yml --private-key xxxx -u xxxx \ No newline at end of file