A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create native-build.yml

authored by

Steven Vandevelde and committed by
GitHub
7b8405b6 1d114551

+20
+20
.github/workflows/native-build.yml
··· 1 + name: Build Native Version 2 + 3 + 4 + on: 5 + workflow_dispatch: 6 + inputs: 7 + 8 + 9 + jobs: 10 + build: 11 + runs-on: ubuntu-latest 12 + 13 + steps: 14 + - uses: actions/checkout@v2 15 + - uses: cachix/install-nix-action@v10 16 + with: 17 + nix_path: nixpkgs=channel:nixos-unstable 18 + - run: nix-build 19 + - run: just build-prod 20 + - run: ls ./build