26 lines
723 B
YAML
26 lines
723 B
YAML
---
|
|
- name: Deploy BAB Frontend Application
|
|
hosts: bab1.mgmt.toal.ca
|
|
become: true
|
|
vars:
|
|
artifact_url: https://gitea.toal.ca/oys/bab-app/actions/runs/10/artifacts/build-artifact-0.0.2.10
|
|
|
|
tasks:
|
|
- name: Download zip file from url
|
|
ansible.builtin.get_url:
|
|
url: "{{ artifact_url }}"
|
|
dest: /tmp/BABFrontend.zip
|
|
mode: '0644'
|
|
|
|
- name: Unzip file to temp directory
|
|
ansible.builtin.unarchive:
|
|
src: /tmp/BABFrontend.zip
|
|
dest: /tmp
|
|
remote_src: true
|
|
|
|
- name: Extract tgz file to nginx directory
|
|
ansible.builtin.unarchive:
|
|
src: /tmp/build-artifact-0.0.2.10/build-0.0.2.tar.gz
|
|
dest: /usr/share/nginx/html
|
|
remote_src: true
|