bitwarden

This commit is contained in:
jaydee 2024-06-04 00:54:11 +02:00
parent 59c13bb689
commit 73abfaa6f1

View File

@ -5,18 +5,18 @@
# DOCKER_IMAGE: docker-tasmota
# FWS: tasmota
tasks:
- name: Build tasmota
- name: Fetch tasmota
ansible.builtin.shell:
cmd: 'git fetch https://github.com/arendst/Tasmota.git {{ BRANCH }}'
chdir: /share/docker_data/docker-tasmota/Tasmota
when: inventory_hostname in groups['nas']
- name: Build tasmota
- name: Checkout tasmota branch
ansible.builtin.shell:
cmd: 'git checkout --force {{ BRANCH }}'
chdir: /share/docker_data/docker-tasmota/Tasmota
when: inventory_hostname in groups['nas']
- name: Build tasmota
- name: Pull tasmota
ansible.builtin.shell:
cmd: 'git pull'
chdir: /share/docker_data/docker-tasmota/Tasmota