mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +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
|
- uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: stremio-web
|
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: |
|
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
2
.gitignore
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue