Skip to content

Commit d9fb858

Browse files
committed
fix: Embedded xml should be xml
1 parent b70e8c4 commit d9fb858

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/build-and-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
if: github.ref == 'refs/heads/master'
127127
run: |
128128
docker buildx build \
129-
--platform linux/amd64,linux/arm/v7,linux/arm64 \
129+
--platform linux/amd64,linux/arm64 \
130130
--push \
131131
-f ./Dockerfile.npm \
132132
-t $GITHUB_REPOSITORY:latest \
@@ -142,7 +142,7 @@ jobs:
142142
if: github.ref != 'refs/heads/master'
143143
run: |
144144
docker buildx build \
145-
--platform linux/amd64,linux/arm/v7,linux/arm64 \
145+
--platform linux/amd64,linux/arm64 \
146146
--push \
147147
-f ./Dockerfile.npm \
148148
-t $GITHUB_REPOSITORY:beta \

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@
2424
"test": "npm run lint"
2525
},
2626
"dependencies": {
27-
"@svrooij/sonos": "^2.6.0-beta.8",
27+
"@svrooij/sonos": "^2.6.0-beta.9",
2828
"mqtt": "5.5.0",
2929
"serilogger": "^0.5.0",
30-
"yalm": "4.1.0",
3130
"typed-emitter": "^2.1.0",
31+
"yalm": "4.1.0",
3232
"yargs": "17.7.2"
3333
},
3434
"devDependencies": {
3535
"@types/debug": "4.1.12",
3636
"@types/node": "^20.11.25",
37-
"@types/yargs": "17.0.32",
3837
"@types/ws": "^8.5.10",
38+
"@types/yargs": "17.0.32",
3939
"@typescript-eslint/eslint-plugin": "4.31.0",
4040
"@typescript-eslint/parser": "4.31.1",
4141
"eslint": "7.32.0",

0 commit comments

Comments
 (0)