mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-10 00:34:51 +00:00
ae7f6e18e5
Fixes #347 Change-Id: I1b8423f9cef46a425c1ec7665c8285af10c56df6
27 lines
589 B
YAML
27 lines
589 B
YAML
name: Build and Deploy Edge version to GH Pages
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout 🛎️
|
|
uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "18"
|
|
- name: Install and Build 🔧
|
|
run: |
|
|
yarn install --immutable
|
|
yarn build
|
|
|
|
- name: Deploy 🚀
|
|
uses: JamesIves/github-pages-deploy-action@v4.5.0
|
|
with:
|
|
branch: gh-pages
|
|
folder: build
|