-
Notifications
You must be signed in to change notification settings - Fork 2
/
deploy.yml
34 lines (26 loc) · 1.1 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
- hosts: apache
tasks:
- name: create
become: yes
file: path=/var/www/html/assets state=directory
- name: Copy the assests
become: yes
copy: src=/var/lib/jenkins/workspace/Deploy/assets/devcon.png dest=/var/www/html/assets/
- name: Copy the assests
become: yes
copy: src=/var/lib/jenkins/workspace/Deploy/assets/poster-01.jpg dest=/var/www/html/assets/
- name: Copy the assests
become: yes
copy: src=/var/lib/jenkins/workspace/Deploy/assets/appdownloadcode.png dest=/var/www/html/assets/
- name: Copy the assests
become: yes
copy: src=/var/lib/jenkins/workspace/Deploy/assets/logo.png dest=/var/www/html/assets/
- name: copy
become: yes
copy: src=index.html dest=/var/www/html/index.html force=yes
- name: copy
become: yes
copy: src=teams.html dest=/var/www/html/teams.html force=yes
- name: copy
become: yes
copy: src=index.css dest=/var/www/html/index.css force=yes