mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-19 05:32:09 +00:00
build action updated to use npm
This commit is contained in:
parent
ea298b06db
commit
3f918d8024
1 changed files with 2 additions and 8 deletions
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
|
@ -14,16 +14,10 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
name: Checkout
|
||||
- uses: actions/setup-node@v1
|
||||
name: Setup Node
|
||||
with:
|
||||
registry-url: 'https://npm.pkg.github.com'
|
||||
- name: Install dependencies
|
||||
run: yarn install
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: npm install
|
||||
- name: Build
|
||||
run: yarn build
|
||||
run: npm run build
|
||||
- uses: actions/upload-artifact@v1
|
||||
name: Upload build artifact
|
||||
with:
|
||||
|
|
|
|||
Loading…
Reference in a new issue