Temporarily removed VSCodium tasks as the upstream APT repository is not available

This commit is contained in:
Jan Beilicke 2020-11-28 22:12:52 +00:00
parent cec0d7cd8c
commit 74e5e42a70

View file

@ -12,16 +12,6 @@
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
@ -33,10 +23,5 @@
- sublime-text
register: sublime_text_installed
- name: Install VSCodium
apt:
pkg:
- codium
register: vscodium_installed
when: ansible_facts['os_family'] == 'Debian'
become: yes