11 lines
286 B
YAML
11 lines
286 B
YAML
---
|
|
name: Install System Libraries
|
|
description: Installs the system libraries necessary to build the project
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install system libraries
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get -y install libwayland-dev
|