dist renamed to build

This commit is contained in:
svetlagasheva 2020-01-22 16:27:31 +02:00
parent ae27944076
commit fdfdf056c8
4 changed files with 4 additions and 4 deletions

View file

@ -20,4 +20,4 @@ jobs:
- uses: actions/upload-artifact@v1 - uses: actions/upload-artifact@v1
with: with:
name: stremio-web name: stremio-web
path: dist path: build

View file

@ -17,7 +17,7 @@ jobs:
run: | run: |
echo -e "[url \"https://github.com/\"]\n\tinsteadOf = ssh://git@github.com/" > ~/.gitconfig echo -e "[url \"https://github.com/\"]\n\tinsteadOf = ssh://git@github.com/" > ~/.gitconfig
yarn install && yarn build yarn install && yarn build
- run: zip -r stremio-web.zip ./dist - run: zip -r stremio-web.zip ./build
- name: Upload binaries to release - name: Upload binaries to release
uses: svenstaro/upload-release-action@v1-release uses: svenstaro/upload-release-action@v1-release
with: with:

2
.gitignore vendored
View file

@ -1,5 +1,5 @@
/node_modules /node_modules
/dist /build
/package-lock.json /package-lock.json
/npm-debug.log /npm-debug.log
.DS_Store .DS_Store

View file

@ -8,7 +8,7 @@
"license": "GPLv3", "license": "GPLv3",
"scripts": { "scripts": {
"start": "webpack-dev-server --mode development", "start": "webpack-dev-server --mode development",
"build": "webpack --mode production", "build": "webpack --mode production --output-path build",
"storybook": "start-storybook --ci --config-dir ./storybook --static-dir ./ --port 6060", "storybook": "start-storybook --ci --config-dir ./storybook --static-dir ./ --port 6060",
"test": "jest", "test": "jest",
"lint": "eslint src" "lint": "eslint src"