chore: bump version #144
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
pull_request: | |
name: 🏗️ Build Server | |
jobs: | |
build-fedora: | |
runs-on: ubuntu-latest | |
container: fedora:38 | |
steps: | |
- name: 📥 Checkout | |
uses: actions/checkout@v4 | |
- name: 👷 Build Dependencies | |
run: | | |
dnf install -y make automake gcc gcc-c++ kernel-devel cmake git | |
dnf install -y pipewire-devel pipewire-libs pulseaudio-libs-devel pipewire-pulseaudio | |
- name: 🔨 Build | |
run: | | |
cmake -B build | |
cmake --build build | |
- name: 🚀 Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: server-amd64 | |
path: build/server |