A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita
audio
rust
zig
deno
mpris
rockbox
mpd
1name: release
2on:
3 push:
4 tags:
5 - "*"
6 workflow_dispatch:
7 inputs:
8 tag:
9 description: "The existing tag to publish"
10 type: "string"
11 required: true
12
13jobs:
14 publish:
15 strategy:
16 matrix:
17 os: [ubuntu-22.04, ubuntu-22.04-arm]
18 runs-on: ${{ matrix.os }}
19 steps:
20 - uses: actions/checkout@v4
21 with:
22 submodules: true
23 - name: Build and upload release
24 uses: fluentci-io/setup-fluentci@v5
25 with:
26 wasm: true
27 plugin: .
28 args: |
29 build
30 release
31 env:
32 GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33 GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34 TAG: ${{ inputs.tag || github.ref_name }}