Auto-bundle web app on commits
This commit is contained in:
parent
052a669c2c
commit
4cd9e22e34
16
.github/workflows/build-next.yml
vendored
16
.github/workflows/build-next.yml
vendored
@ -1,16 +0,0 @@
|
||||
name: Build web app
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- web/**
|
||||
|
||||
jobs:
|
||||
run:
|
||||
name: npm run build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install dependencies
|
||||
run: cd web && npm install --include=dev --force && npm run build
|
16
.github/workflows/bundle-web.yml
vendored
16
.github/workflows/bundle-web.yml
vendored
@ -1,21 +1,19 @@
|
||||
name: Bundle web app
|
||||
name: Bundle and bundle web app into Owncast codebase
|
||||
on:
|
||||
repository_dispatch:
|
||||
types: [bundle-admin-event]
|
||||
push:
|
||||
paths:
|
||||
- web/**
|
||||
|
||||
jobs:
|
||||
bundle:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Bundle admin
|
||||
- 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:
|
||||
author_name: Owncast
|
||||
author_email: owncast@owncast.online
|
||||
message: 'Update embedded web app to ${{ github.event.client_payload.sha }}'
|
||||
message: 'Bundle embedded web app'
|
||||
add: 'static/web'
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GH_CR_PAT }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user