fix: remove stale files, fix ci node version
Deploy / deploy (push) Has been cancelled
ci / build (push) Has been cancelled

This commit is contained in:
2026-06-13 20:56:31 +03:00
parent 0f73ca72d7
commit fb6bf6e1bf
3 changed files with 2 additions and 24 deletions
-22
View File
@@ -1,22 +0,0 @@
name: Deploy
on:
push:
branches: master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Ansible
run: |
pip install -r infra/ansible/requirements.txt
ansible-galaxy install -r infra/ansible/requirements.yml
- name: Run playbook
run: |
echo "${{ secrets.ANSIBLE_VAULT_PASSWORD }}" > .vault_pass
ansible-playbook -i infra/ansible/inventory/hosts.yml infra/ansible/playbook.yml --vault-password-file .vault_pass
rm .vault_pass
+2 -2
View File
@@ -19,9 +19,9 @@ jobs:
- name: Node setup
uses: actions/setup-node@v6
with:
node-version: "24.12"
node-version: "25"
- name: Install deps
run: npm install
- name: Lint
- name: Build
run: npm run build