2022-08-15 19:47:31 -07:00
|
|
|
name: Build and bundle web app into Owncast
|
2022-06-19 15:30:32 -07:00
|
|
|
on:
|
2022-08-15 19:23:42 -07:00
|
|
|
push:
|
2022-08-19 22:13:01 -07:00
|
|
|
branches:
|
|
|
|
- webv2
|
|
|
|
- develop
|
2022-08-15 19:23:42 -07:00
|
|
|
paths:
|
|
|
|
- web/**
|
|
|
|
|
2022-06-19 15:30:32 -07:00
|
|
|
jobs:
|
|
|
|
bundle:
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-19 11:56:15 -08:00
|
|
|
if: github.repository == 'owncast/owncast'
|
2022-11-04 20:04:13 -07:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-06-19 15:30:32 -07:00
|
|
|
steps:
|
2022-08-15 19:23:42 -07:00
|
|
|
- name: Bundle web app (next.js build)
|
2022-06-19 15:30:32 -07:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
- run: build/web/bundleWeb.sh
|
|
|
|
|
|
|
|
- name: Commit changes
|
|
|
|
uses: EndBug/add-and-commit@v9
|
|
|
|
with:
|
2022-08-15 20:41:10 -07:00
|
|
|
pull: --rebase --autostash
|
2022-08-15 19:23:42 -07:00
|
|
|
message: 'Bundle embedded web app'
|
2022-06-19 15:30:32 -07:00
|
|
|
add: 'static/web'
|