mirror of
https://github.com/Unkn0wnCat/matrix-veles.git
synced 2025-04-28 17:56:49 +02:00
Add build-webui action
This commit is contained in:
parent
dc34fdea10
commit
dfbe5cdc18
1 changed files with 32 additions and 0 deletions
32
.github/workflows/build-webui.yml
vendored
Normal file
32
.github/workflows/build-webui.yml
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
name: Build WebUI
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
update:
|
||||
name: Build Site
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
name: Checkout Repo
|
||||
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "17.x"
|
||||
|
||||
- run: cd webui
|
||||
|
||||
- run: yarn
|
||||
name: Install Dependencies
|
||||
|
||||
- run: yarn build
|
||||
name: Build Site
|
||||
|
||||
#- uses: actions/upload-artifact@v3
|
||||
# name: Upload Artifacts
|
||||
# with:
|
||||
# name: site
|
||||
# path: public
|
Loading…
Add table
Reference in a new issue