Skip to content

Commit

Permalink
Fix staging CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
emccorson committed Apr 15, 2022
1 parent 2dc4882 commit 16cbc1f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build-staging:
docker:
- image: circleci/node:10.16-browsers
- image: circleci/node:14.18.2-browsers
steps:
- checkout
- run: |
Expand All @@ -13,11 +13,10 @@ jobs:
cd dist/v2/OnsenUI; git fetch --tags; git checkout onsen.io; cd ../../..; # Latest 2.x with documentation fixes
cd dist/playground; git fetch origin; git checkout gh-pages; git pull; cd ../..;
cd dist/themeroller; git fetch origin; git checkout gh-pages; git pull; cd ../..;
curl -o- -L https://yarnpkg.com/install.sh | bash
sudo npm install -g [email protected]
npm install
cd dist/v2/OnsenUI/css-components && npm install && cd ../../../..
cd dist/v2/OnsenUI && npm install && npm run build && cd ../../..
cd dist/v2/OnsenUI/bindings/react && yarn && yarn gen-docs && cd ../../../../..
$(cd dist/v2/OnsenUI && npm install && npm run build)
$(cd dist/v2/OnsenUI/react-onsenui && npm run gen-docs)
AWS_BUCKET=${AWS_BUCKET_EN} ./node_modules/.bin/gulp deploy --lang=en
AWS_BUCKET=${AWS_BUCKET_JA} ./node_modules/.bin/gulp deploy --lang=ja
# Note: http://s.onsen.io/ and http://s.ja.onsen.io/ directly accesses S3. Nginx and KeyCDN are not used.
Expand Down

0 comments on commit 16cbc1f

Please sign in to comment.