Skip to content

Update deploy-prd.yaml #16

Update deploy-prd.yaml

Update deploy-prd.yaml #16

Workflow file for this run

name: deploy website
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: deploying to guild-avatar-stg.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-stg.surge.sh --token ${{ secrets.SURGE_TOKEN }}