stremio-web/.github/workflows/build.yml

26 lines
481 B
YAML

name: Build
on:
push:
branches:
- '*'
tags-ignore:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- name: Build
with:
registry-url: 'https://npm.pkg.github.com'
- run: yarn install && yarn build
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v1
with:
name: stremio-web
path: build