Skip to content

Commit 005493b

Browse files
committed
paths
1 parent 1915b3b commit 005493b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci-arm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: prepare build env
3838
run: |
3939
git clone https://github.com/pygame-web/python-wasm-sdk
40-
mkdir -p /tmp/fs/tmp/sdk/dist /tmp/dist
40+
mkdir -p /tmp/dist
4141
4242
- name: Build sdk (debian docker 12) for python 3.13
4343
run: |
@@ -48,7 +48,7 @@ jobs:
4848
uses: svenstaro/[email protected]
4949
with:
5050
repo_token: ${{ secrets.GITHUB_TOKEN }}
51-
file: /tmp/sdk/dist/*.tar.lz4
51+
file: /tmp/dist/*.tar.lz4
5252
file_glob: true
5353
tag: ${{ github.ref }}
5454

.github/workflows/ci-x86_64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: prepare build env
3838
run: |
3939
git clone https://github.com/pygame-web/python-wasm-sdk
40-
mkdir -p /tmp/fs/tmp/sdk/dist /tmp/dist
40+
mkdir -p /tmp/dist
4141
4242
- name: Build sdk (debian docker 12) for python 3.13
4343
run: |
@@ -48,7 +48,7 @@ jobs:
4848
uses: svenstaro/[email protected]
4949
with:
5050
repo_token: ${{ secrets.GITHUB_TOKEN }}
51-
file: /tmp/sdk/dist/*.tar.lz4
51+
file: /tmp/dist/*.tar.lz4
5252
file_glob: true
5353
tag: ${{ github.ref }}
5454

docker-run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ docker run $@ \
1818
-e wasisdk=true \
1919
-v ./python-wasm-sdk:/workspace \
2020
-v ./prebuilt:/workspace/prebuilt \
21-
-v ${CONTAINER_PATH}${SDKROOT}/dist:${SDKROOT}/dist \
21+
-v /tmp/dist:${SDKROOT}/dist \
2222
--workdir=/workspace --name wasmsdk debian:12 \
2323
bash --noprofile --rcfile docker_rc.sh -ci "( ./python-wasm-sdk.sh $PROMPT"
2424

0 commit comments

Comments
 (0)