2022-08-16 04:47:31 +02:00
|
|
|
name: Build and bundle web app into Owncast
|
2022-06-20 00:30:32 +02:00
|
|
|
on:
|
2022-08-16 04:23:42 +02:00
|
|
|
push:
|
2022-08-20 07:13:01 +02:00
|
|
|
branches:
|
|
|
|
- develop
|
2022-08-16 04:23:42 +02:00
|
|
|
paths:
|
2022-12-26 20:30:16 +01:00
|
|
|
- 'web/**'
|
2023-01-28 01:18:02 +01:00
|
|
|
- '!**.md'
|
2022-08-16 04:23:42 +02:00
|
|
|
|
2022-06-20 00:30:32 +02:00
|
|
|
jobs:
|
|
|
|
bundle:
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-19 20:56:15 +01:00
|
|
|
if: github.repository == 'owncast/owncast'
|
2022-11-05 04:04:13 +01:00
|
|
|
|
2022-06-20 00:30:32 +02:00
|
|
|
steps:
|
2022-11-24 00:06:51 +01:00
|
|
|
- id: skip_check
|
|
|
|
uses: fkirc/skip-duplicate-actions@v5
|
|
|
|
with:
|
|
|
|
concurrent_skipping: 'same_content_newer'
|
|
|
|
|
2023-02-15 23:46:45 +01:00
|
|
|
- name: Cache node modules
|
2023-03-15 03:13:59 +01:00
|
|
|
uses: actions/cache@v3
|
2023-02-15 23:46:45 +01:00
|
|
|
env:
|
|
|
|
cache-name: cache-node-modules-bundle-web-app
|
|
|
|
with:
|
|
|
|
path: ~/.npm
|
|
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('web/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-build-${{ env.cache-name }}-
|
|
|
|
${{ runner.os }}-build-
|
|
|
|
${{ runner.os }}-
|
|
|
|
|
2022-08-16 04:23:42 +02:00
|
|
|
- name: Bundle web app (next.js build)
|
2022-06-20 00:30:32 +02:00
|
|
|
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'
|
2022-06-20 00:30:32 +02:00
|
|
|
add: 'static/web'
|
2023-02-14 19:08:01 +01:00
|
|
|
author_name: Owncast
|
|
|
|
author_email: owncast@owncast.online
|