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

Configure Feed

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

Create native.yml

authored by

Steven Vandevelde and committed by
GitHub
06fb8c66 d25ada36

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