Add button to join class group chats on Matrix (#45) #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Autodeploy branch | |
on: | |
push: | |
branches: | |
- deploy | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install node dependencies | |
run: npm install | |
- name: Run build | |
run: npm run build | |
- name: Archive build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: built-site | |
path: | | |
build | |
!build/latest.json |