now compiling and sending the output in one go instead of having to do it in two steps

This commit is contained in:
aminnairi
2024-11-30 19:23:21 +01:00
parent d318e0a8bc
commit bc3537b218
@@ -13,18 +13,6 @@
- name: Compile the binary - name: Compile the binary
ansible.builtin.command: ansible.builtin.command:
chdir: /$HOME/Documents/git/github.com/aminnairi/markdown-table-align/ chdir: /$HOME/Documents/git/github.com/aminnairi/markdown-table-align/
cmd: deno compile index.ts cmd: deno compile --allow-read --output $HOME/.local/bin/markdown-table-align index.ts
when: git_clone_result.changed when: git_clone_result.changed
register: compile_the_binary register: compile_the_binary
- name: Copy the binary
ansible.builtin.copy:
src: /$HOME/Documents/git/github.com/aminnairi/markdown-table-align/markdown-table-align
dest: /$HOME/.local/bin/
when: compile_the_binary.changed
- name: Remove the binary
ansible.builtin.file:
path: /$HOME/Document/git/github.com/aminnairi/markdown-table-align/markdown-table-align
state: absent
when: compile_the_binary.changed