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
with:
name: stremio-web
path: dist
path: build

View file

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

2
.gitignore vendored
View file

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

View file

@ -8,7 +8,7 @@
"license": "GPLv3",
"scripts": {
"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",
"test": "jest",
"lint": "eslint src"