playbooks/deploy 3d.yml

15 lines
390 B
YAML
Raw Normal View History

2024-08-26 15:11:51 +03:30
---
2024-08-26 15:19:35 +03:30
- name: Deploy 3d
2024-08-26 15:11:51 +03:30
hosts: all
tasks:
2024-08-26 15:19:35 +03:30
- name: Go to the 3d directory and pull the latest code
shell: git pull origin master
args:
chdir: /var/www/nuxt/3d
2024-08-26 15:16:37 +03:30
register: git_result
2024-08-26 15:19:35 +03:30
- name: Build source with Docker
shell: docker run -w /srv -v $(pwd):/srv -u $(id -u):$(id -g) --rm node:20.8 npm run build
args:
chdir: /var/www/nuxt/3d