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

33 lines
756 B
YAML
Raw Normal View History

2022-08-16 04:47:31 +02:00
name: Build and bundle web app into Owncast
on:
2022-08-16 04:23:42 +02:00
push:
branches:
- develop
2022-08-16 04:23:42 +02:00
paths:
- 'web/**'
- '!**.md'
2022-08-16 04:23:42 +02:00
jobs:
bundle:
runs-on: ubuntu-latest
if: github.repository == 'owncast/owncast'
steps:
2022-11-24 00:06:51 +01:00
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
2022-08-16 04:23:42 +02: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:41:10 +02:00
pull: --rebase --autostash
2022-08-16 04:23:42 +02:00
message: 'Bundle embedded web app'
add: 'static/web'
author_name: Owncast
author_email: owncast@owncast.online