Skip to content

add .well-known for matrix server #11

add .well-known for matrix server

add .well-known for matrix server #11

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Build TypeScript
run: npm run build
- name: Bundle Dist Files
run: cp -v *.{'html','css','svg'} ./public
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.4.3
with:
branch: gh-pages
folder: ./public
clean: true