Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit 7c47c80

Browse files
committed
fix cache and scripts
1 parent b827aa9 commit 7c47c80

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ jobs:
8181
uses: actions/cache@v4
8282
with:
8383
path: |
84-
prefix
8584
cache
8685
key: buildcache
8786
- uses: actions/setup-node@v4
@@ -108,9 +107,6 @@ jobs:
108107
with:
109108
name: libxml.wasm.tgz
110109
path: libxml.wasm-*.tgz
111-
- name: Fix cache permission
112-
run: |
113-
sudo chown -R $(whoami) prefix cache
114110
publish:
115111
name: Publish packages
116112
runs-on: ubuntu-latest

scripts/vendor/00-zlib.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash -e
22

3+
set -uo pipefail
4+
35
VERSION="1.3.1"
46
DIRNAME="zlib-${VERSION}"
57
FILENAME="${DIRNAME}.tar.gz"

scripts/vendor/10-libiconv.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash -e
22

3+
set -uo pipefail
4+
35
VERSION="1.17"
46
DIRNAME="libiconv-${VERSION}"
57
FILENAME="${DIRNAME}.tar.gz"

scripts/vendor/20-libxml2.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash -e
22

3+
set -uo pipefail
4+
35
VERSION="2.12.6"
46
DIRNAME="libxml2-${VERSION}"
57
FILENAME="${DIRNAME}.tar.xz"

0 commit comments

Comments
 (0)