diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a98c5ed04..bbd3d62ca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,4 +20,4 @@ jobs: - uses: actions/upload-artifact@v1 with: name: stremio-web - path: dist + path: build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1f20e83dc..23e32b9ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: diff --git a/.gitignore b/.gitignore index 6a44f9718..cfc12513d 100755 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ /node_modules -/dist +/build /package-lock.json /npm-debug.log .DS_Store diff --git a/package.json b/package.json index 53d6f78c6..b4ddb06cf 100755 --- a/package.json +++ b/package.json @@ -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"