Skip to content

Commit

Permalink
Fix chroma deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasDeBruijn committed Sep 21, 2024
1 parent b6012a3 commit bb5763f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ansible/roles/chroma/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

- name: "Download and extract chroma frontend"
ansible.builtin.unarchive:
src: https://github.com/svsticky/chroma/releases/{{ chroma.git_tag }}/download/frontend.tar.gz
src: https://github.com/svsticky/chroma/releases/download/{{ chroma.git_tag }}/frontend.tar.gz
dest: "/var/www/chroma/frontend"
remote_src: true
owner: "chroma"
Expand All @@ -50,7 +50,7 @@

- name: "Download and extract chroma docs"
ansible.builtin.unarchive:
src: https://github.com/svsticky/chroma/releases/{{ chroma.git_tag }}/download/docs.tar.gz
src: https://github.com/svsticky/chroma/releases/download/{{ chroma.git_tag }}/docs.tar.gz
dest: "/var/www/chroma/docs"
remote_src: true
owner: "chroma"
Expand All @@ -61,7 +61,7 @@

- name: "Download and extract chroma server"
ansible.builtin.get_url:
url: https://github.com/svsticky/chroma/releases/{{ chroma.git_tag }}/download/server-x86_64-unknown-linux-musl
url: https://github.com/svsticky/chroma/releases/download/{{ chroma.git_tag }}/server-x86_64-unknown-linux-musl
dest: "/var/www/chroma/server"
owner: "chroma"
group: "chroma"
Expand Down

0 comments on commit bb5763f

Please sign in to comment.