stremio-web/.github/workflows/build.yml
2020-07-15 14:39:48 +03:00

25 lines
418 B
YAML

name: Build
on:
push:
branches:
- '*'
tags-ignore:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
name: Checkout
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- uses: actions/upload-artifact@v1
name: Upload build artifact
with:
name: stremio-web
path: build