Skip to content
Snippets Groups Projects
Verified Commit 2a9c8c8e authored by Louis's avatar Louis :fire:
Browse files

Fix quoting output dir in web build

parent 4ffd33fc
No related branches found
No related tags found
No related merge requests found
Pipeline #483 passed with stages
in 1 minute and 37 seconds
...@@ -68,9 +68,9 @@ compile-web: ...@@ -68,9 +68,9 @@ compile-web:
- wasm-pack build forge-script-web --release --target web --out-dir out/pkg-web - wasm-pack build forge-script-web --release --target web --out-dir out/pkg-web
- wasm-pack build forge-script-web --release --target nodejs --out-dir out/pkg-npm - wasm-pack build forge-script-web --release --target nodejs --out-dir out/pkg-npm
- wasm-pack build forge-script-web --release --target bundler --out-dir out/pkg-bundle - wasm-pack build forge-script-web --release --target bundler --out-dir out/pkg-bundle
- cd "${CI_PROJECT_DIR}/forge-script-web/out/pkg-web" && zip -r pkg-web.zip ./* && mv pkg-web.zip "${CI_PROJECT_DIR/" - cd "${CI_PROJECT_DIR}/forge-script-web/out/pkg-web" && zip -r pkg-web.zip ./* && mv pkg-web.zip "${CI_PROJECT_DIR}/"
- cd "${CI_PROJECT_DIR}/forge-script-web/out/pkg-npm" && zip -r pkg-npm.zip ./* && mv pkg-npm.zip "${CI_PROJECT_DIR/" - cd "${CI_PROJECT_DIR}/forge-script-web/out/pkg-npm" && zip -r pkg-npm.zip ./* && mv pkg-npm.zip "${CI_PROJECT_DIR}/"
- cd "${CI_PROJECT_DIR}/forge-script-web/out/pkg-bundle" && zip -r pkg-bundle.zip ./* && mv pkg-bundle.zip "${CI_PROJECT_DIR/" - cd "${CI_PROJECT_DIR}/forge-script-web/out/pkg-bundle" && zip -r pkg-bundle.zip ./* && mv pkg-bundle.zip "${CI_PROJECT_DIR}/"
dependencies: dependencies:
- "run-tests" - "run-tests"
artifacts: artifacts:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment