Skip to content

Commit 9c446c8

Browse files
committed
fix(workflows): add curl and unzip to build dependencies in alpine npm release workflow
1 parent 3a5b6d7 commit 9c446c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/npm-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
7878
- run: |
7979
docker run --rm -v $(pwd):/tmp/project --entrypoint /bin/sh --platform linux/amd64 node:20-alpine -c "\
80-
apk add build-base bash --update-cache && \
80+
apk add build-base bash curl unzip --update-cache && \
8181
cd /tmp/project && \
8282
./scripts/vendor.sh && \
8383
make loadable"
@@ -92,7 +92,7 @@ jobs:
9292
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
9393
- run: |
9494
docker run --rm -v $(pwd):/tmp/project --entrypoint /bin/sh --platform linux/arm64 node:20-alpine -c "\
95-
apk add build-base bash --update-cache && \
95+
apk add build-base bash curl unzip --update-cache && \
9696
cd /tmp/project && \
9797
./scripts/vendor.sh && \
9898
make loadable"

0 commit comments

Comments
 (0)