https://github.com/quantum5/pipewire-actions
Builds PipeWire that can be installed on GitHub Actions
https://github.com/quantum5/pipewire-actions
Last synced: 7 months ago
JSON representation
Builds PipeWire that can be installed on GitHub Actions
- Host: GitHub
- URL: https://github.com/quantum5/pipewire-actions
- Owner: quantum5
- License: mit
- Created: 2021-12-25T00:57:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-25T03:28:11.000Z (over 4 years ago)
- Last Synced: 2024-12-28T21:16:43.405Z (over 1 year ago)
- Language: Shell
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pipewire-actions
Builds PipeWire that can be installed on GitHub Actions.
## Usage
```debsources
deb [trusted=yes] https://pipewire-ubuntu.quantum5.workers.dev ./
```
Due to GitHub releases mangling the file names and its redirects confusing
the Ubuntu versions used on GitHub Actions, a Cloudflare worker is used to
proxy. The source code is available [here](worker.js).
For GitHub Actions, add this to your workflow:
```yaml
- name: Add PipeWire repository
run: echo 'deb [trusted=yes] https://pipewire-ubuntu.quantum5.workers.dev ./' | sudo tee /etc/apt/sources.list.d/pipewire.list
```
Then be sure to do `apt-get update` and then `apt-get install`.