Skip to content

Add rts frame (#15) #13

Add rts frame (#15)

Add rts frame (#15) #13

Workflow file for this run

name: deploy website to production
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
name: deploying to guild-avatar.surge.sh
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install -g surge
- run: make build
- run: surge public guild-avatar.surge.sh --token ${{ secrets.SURGE_TOKEN }}