mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +00:00
Build actions refactored to separate steps
This commit is contained in:
parent
b3b1a3671a
commit
01449b722c
1 changed files with 5 additions and 3 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
|
@ -18,12 +18,14 @@ jobs:
|
|||
name: Setup Node
|
||||
with:
|
||||
registry-url: 'https://npm.pkg.github.com'
|
||||
- name: Build
|
||||
run: yarn install && yarn build
|
||||
- name: Install dependencies
|
||||
run: yarn install
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Build
|
||||
run: yarn build
|
||||
- uses: actions/upload-artifact@v1
|
||||
name: Upload build
|
||||
name: Upload build artifact
|
||||
with:
|
||||
name: stremio-web
|
||||
path: build
|
||||
|
|
|
|||
Loading…
Reference in a new issue