mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
11 lines
257 B
YAML
11 lines
257 B
YAML
---
|
|
- name: Configure the Yarn APT key
|
|
apt_key: url={{ repositories.yarn }}pubkey.gpg
|
|
|
|
- name: Add Yarn repository
|
|
apt_repository:
|
|
repo: 'deb {{ repositories.yarn }} stable main'
|
|
state: present
|
|
|
|
- name: Install Yarn
|
|
apt: pkg=yarn state=present |