Skip to content

Commit f43059c

Browse files
committed
fix artefacts folder path
1 parent 6dd8df0 commit f43059c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
uses: actions/upload-artifact@v2
3030
with:
3131
name: sdk
32-
path: $GITHUB_WORKSPACE/sdk
32+
path: /home/runner/work/python-wasm-sdk/python-wasm-sdk/sdk

python-wasm-sdk.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,16 @@ then
2323
echo " ------------------- building cpython wasm plus -------------------"
2424
if ./scripts/cpython-build-emsdk-deps.sh > /dev/null
2525
then
26-
echo "make tarball"
26+
cd $GITHUB_WORKSPACE
27+
echo "making tarball"
28+
2729
mkdir -p sdk
2830
cat > sdk/index.html <<END
2931
<html>
3032
<a href=python-wasm-sdk-stable.tar.gz>python-wasm-sdk (emsdk tot, python 3.11b1)</a>
3133
</html>
3234
END
33-
tar -cpR emsdk devices/* prebuilt/* > sdk/python-wasm-sdk-stable.tar.gz
35+
tar -cpR emsdk devices/* prebuilt/* > sdk/python-wasm-sdk-stable.tar
3436
else
3537
echo " cpython-build-emsdk-deps failed"
3638
exit 2

0 commit comments

Comments
 (0)