Files
bab-backend-ansible/deploy_application.yml
2023-12-20 14:03:22 -05:00

27 lines
742 B
YAML

---
- name: Deploy BAB Frontend Application
hosts: bab1.mgmt.toal.ca
become: false
vars:
artifact_version: 0.0.2
artifact_job: 11
artifact_url: https://gitea.toal.ca/oys/bab-app/actions/runs/10/artifacts/build-artifact-{{ artifact_version }}.{{ artifact_job }}.zip
tasks:
- name: Download zip file from url
ansible.builtin.get_url:
url: "{{ artifact_url }}"
dest: /tmp/BABFrontend.zip
mode: '0644'
- name: Unzip file to web dir
ansible.builtin.unarchive:
src: /tmp/BABFrontend.zip
dest: /usr/share/nginx/html/
remote_src: true
- name: Clean up artifact download
ansible.builtin.file:
path: /tmp/BABFrontend.zip
state: absent