From b0333049d54c9bbf174fcdd525756681d774da7a Mon Sep 17 00:00:00 2001 From: Jan Beilicke Date: Sat, 28 Nov 2020 20:13:32 +0000 Subject: [PATCH] Added VSCodium --- tasks/main.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index d48158a..16a83f4 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -11,6 +11,16 @@ repo: deb https://download.sublimetext.com/ apt/stable/ state: present +- name: Add key for VSCodium repo + apt_key: + url: https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg + state: present + +- name: Add repository for VSCodium + apt_repository: + repo: deb https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/repos/debs/ vscodium main + state: present + - name: Update apt cache apt: update_cache: yes @@ -20,4 +30,10 @@ apt: pkg: - sublime-text - register: sublime_text_installed \ No newline at end of file + register: sublime_text_installed + +- name: Install VSCodium + apt: + pkg: + - codium + register: vscodium_installed