mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
21 lines
320 B
YAML
21 lines
320 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
tags-ignore:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Build
|
|
run: yarn install && yarn build
|
|
- uses: actions/upload-artifact@v1
|
|
with:
|
|
name: stremio-web
|
|
path: build
|