Skip to content

Commit 6365bd1

Browse files
authored
Apply changes done for #128 (libasound2 and branch naming) (#133)
1 parent 3f736c5 commit 6365bd1

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/docker-multi-arch.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
tags:
66
- "release/*"
77
- "main/*"
8-
- "devel/*"
8+
- "develop/*"
99
- "feature/*"
1010
- "daily/*"
1111

@@ -66,9 +66,9 @@ jobs:
6666
if [ "${ref_name}" = "main" ]; then
6767
echo "main branch";
6868
tags="${image_name}:main-${distro_id}";
69-
elif [ "${ref_name}" = "devel" ]; then
70-
echo "devel branch";
71-
tags="${image_name}:devel-${distro_id}"
69+
elif [ "${ref_name}" = "develop" ]; then
70+
echo "develop branch";
71+
tags="${image_name}:develop-${distro_id}"
7272
else
7373
echo "other branch ["${ref_name}"]";
7474
tags="${image_name}:branch-${ref_name}-${distro_id}";
@@ -94,11 +94,11 @@ jobs:
9494
elif [ "${tag_type}" = "main" ]; then
9595
echo "main tag";
9696
tags="${image_name}:main-${tag_name}-${distro_id}";
97-
elif [ "${tag_type}" = "devel" ]; then
98-
echo "devel tag";
99-
tags="${image_name}:devel-${tag_name}-${distro_id}";
97+
elif [ "${tag_type}" = "develop" ]; then
98+
echo "develop tag";
99+
tags="${image_name}:develop-${tag_name}-${distro_id}";
100100
elif [ "${tag_type}" = "feature" ]; then
101-
echo "devel tag";
101+
echo "develop tag";
102102
tags="${image_name}:feature-${tag_name}-${distro_id}";
103103
elif [ "${tag_type}" = "daily" ]; then
104104
echo "daily build";

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ COPY --from=base /usr/bin/librespot /usr/bin/librespot
3535

3636
# Add runtime dependencies only
3737
RUN apt-get update
38-
RUN apt-get install -y libasound2
38+
RUN apt-get install -y libasound2-plugins
3939
RUN apt-get install -y alsa-utils
4040
RUN apt-get install -y --no-install-recommends pulseaudio-utils
4141
RUN apt-get install -y ca-certificates

0 commit comments

Comments
 (0)