Compare commits

..

2 Commits

Author SHA1 Message Date
3264bd2b79 build
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
2025-12-17 17:53:03 +01:00
522f03d128 build 2025-12-17 17:51:33 +01:00

View File

@@ -15,13 +15,18 @@
# - name: Pull tasmota # - name: Pull tasmota
# ansible.builtin.shell: # ansible.builtin.shell:
# cmd: 'git config --global --add safe.directory /share/docker_data/docker-tasmota/Tasmota' # cmd: 'git config --global --add safe.directory /share/docker_data/docker-tasmota/Tasmota'
- name: Remove existing directory
ansible.builtin.file:
path: /share/docker_data/docker-tasmota/Tasmota
state: absent
- name: Checkout a github repo and use refspec to fetch all pull requests - name: Checkout a github repo and use refspec to fetch all pull requests
ansible.builtin.git: ansible.builtin.git:
repo: 'https://github.com/arendst/Tasmota.git' repo: 'https://github.com/arendst/Tasmota.git'
dest: /share/docker_data/docker-tasmota/Tasmota dest: /share/docker_data/docker-tasmota/Tasmota
version: '{{ BRANCH }}' version: '{{ BRANCH }}'
# - name: Fetch tasmota # - name: Fetch tasmota
# ansible.builtin.shell: # ansible.builtin.shell:
# cmd: 'git fetch https://github.com/arendst/Tasmota.git {{ BRANCH }}' # cmd: 'git fetch https://github.com/arendst/Tasmota.git {{ BRANCH }}'