Skip to content
Snippets Groups Projects
Verified Commit 18a70f92 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

feat: new static copy of values

parent f7e64018
No related branches found
No related tags found
1 merge request!9Version 0.4.0 🍾
Pipeline #1398 passed
...@@ -55,6 +55,7 @@ deploy-netlify-preview: ...@@ -55,6 +55,7 @@ deploy-netlify-preview:
stage: deploy stage: deploy
script: script:
- cd examples/web/dist - cd examples/web/dist
- cp -rp ../static/* .
- npm_config_yes=true npx --package=netlify-cli netlify deploy --dir=. - npm_config_yes=true npx --package=netlify-cli netlify deploy --dir=.
dependencies: dependencies:
- build-wasm - build-wasm
...@@ -65,7 +66,7 @@ deploy-netlify-prod: ...@@ -65,7 +66,7 @@ deploy-netlify-prod:
stage: deploy stage: deploy
script: script:
- cd examples/web/dist - cd examples/web/dist
- cp ../robots.txt . - cp -rp ../static/* .
- npm_config_yes=true npx --package=netlify-cli netlify deploy --dir=. --prod - npm_config_yes=true npx --package=netlify-cli netlify deploy --dir=. --prod
dependencies: dependencies:
- build-wasm - build-wasm
...@@ -76,7 +77,7 @@ deploy-cloudfare-master: ...@@ -76,7 +77,7 @@ deploy-cloudfare-master:
stage: deploy stage: deploy
script: script:
- cd examples/web/dist - cd examples/web/dist
- cp ../robots.txt . - cp -rp ../static/* .
- npm_config_yes=true npx wrangler pages publish . --project-name=boytacean --branch master - npm_config_yes=true npx wrangler pages publish . --project-name=boytacean --branch master
dependencies: dependencies:
- build-wasm - build-wasm
...@@ -87,7 +88,7 @@ deploy-cloudfare-stable: ...@@ -87,7 +88,7 @@ deploy-cloudfare-stable:
stage: deploy stage: deploy
script: script:
- cd examples/web/dist - cd examples/web/dist
- cp ../robots.txt . - cp -rp ../static/* .
- npm_config_yes=true npx wrangler pages publish . --project-name=boytacean --branch stable - npm_config_yes=true npx wrangler pages publish . --project-name=boytacean --branch stable
dependencies: dependencies:
- build-wasm - build-wasm
...@@ -98,7 +99,7 @@ deploy-cloudfare-prod: ...@@ -98,7 +99,7 @@ deploy-cloudfare-prod:
stage: deploy stage: deploy
script: script:
- cd examples/web/dist - cd examples/web/dist
- cp ../robots.txt . - cp -rp ../static/* .
- npm_config_yes=true npx wrangler pages publish . --project-name=boytacean --branch prod - npm_config_yes=true npx wrangler pages publish . --project-name=boytacean --branch prod
dependencies: dependencies:
- build-wasm - build-wasm
......
/*
X-Robots-Tag: all
File moved
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