mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-01-11 22:40:31 +00:00
dist renamed to build
This commit is contained in:
parent
ae27944076
commit
fdfdf056c8
4 changed files with 4 additions and 4 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
|
@ -20,4 +20,4 @@ jobs:
|
|||
- uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: stremio-web
|
||||
path: dist
|
||||
path: build
|
||||
|
|
|
|||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -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
2
.gitignore
vendored
|
|
@ -1,5 +1,5 @@
|
|||
/node_modules
|
||||
/dist
|
||||
/build
|
||||
/package-lock.json
|
||||
/npm-debug.log
|
||||
.DS_Store
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue