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.

Define specific os's for the native-build github action

+3 -3
+3 -3
.github/workflows/native-build.yml
··· 123 123 strategy: 124 124 fail-fast: false 125 125 matrix: 126 - platform: [macos-latest, ubuntu-latest, windows-latest] 126 + os: [macos-10.15, ubuntu-20.04, windows-2019] 127 127 128 - runs-on: ${{ matrix.platform }} 128 + runs-on: ${{ matrix.os }} 129 129 130 130 steps: 131 131 - uses: actions/checkout@v2 ··· 156 156 # Dependencies 157 157 - run: cargo install tauri-bundler --force 158 158 - name: install webkit2gtk (ubuntu only) 159 - if: matrix.platform == 'ubuntu-latest' 159 + if: matrix.os == 'ubuntu-20.04' 160 160 run: | 161 161 sudo apt-get update 162 162 sudo apt-get install -y webkit2gtk-4.0