owncast/.github/workflows/bundle-web.yml

20 lines
408 B
YAML
Raw Normal View History

2022-08-16 05:47:31 +03:00
name: Build and bundle web app into Owncast
on:
2022-08-16 05:23:42 +03:00
push:
paths:
- web/**
jobs:
bundle:
runs-on: ubuntu-latest
steps:
2022-08-16 05:23:42 +03:00
- name: Bundle web app (next.js build)
uses: actions/checkout@v3
- run: build/web/bundleWeb.sh
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
2022-08-16 05:23:42 +03:00
message: 'Bundle embedded web app'
add: 'static/web'