mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
31 lines
600 B
YAML
31 lines
600 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
tags-ignore:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
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 }}
|
|
- name: Build
|
|
run: yarn build
|
|
- uses: actions/upload-artifact@v1
|
|
name: Upload build artifact
|
|
with:
|
|
name: stremio-web
|
|
path: build
|