Skip to content

Commit

Permalink
fix: ok now it should really really work
Browse files Browse the repository at this point in the history
  • Loading branch information
float3 committed Apr 30, 2024
1 parent 8562567 commit 463944f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
export WASM_FILE=$(find ${RELEASE_DIR}/extension/dist -name "*.wasm" -print -quit)
mv $WASM_FILE ${RELEASE_DIR}/extension/dist/zola_slug_bg.wasm
cd $RELEASE_DIR
zip -r ${RELEASE_DIR}.zip .
zip -r ../${RELEASE_DIR}.zip .
cd ..
mv ${RELEASE_DIR}.zip $VSIX_FILE
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ jobs:
unzip $VSIX_FILE -d $RELEASE_DIR
export WASM_FILE=$(find ${RELEASE_DIR}/extension/dist -name "*.wasm" -print -quit)
mv $WASM_FILE ${RELEASE_DIR}/extension/dist/zola_slug_bg.wasm
zip -r ${RELEASE_DIR}.zip $RELEASE_DIR
cd $RELEASE_DIR
zip -r ../${RELEASE_DIR}.zip .
cd ..
mv ${RELEASE_DIR}.zip $VSIX_FILE
- name: Test
Expand Down

0 comments on commit 463944f

Please sign in to comment.