Skip to content

Merge pull request #9 from newsguildny/feature/SCST #7

Merge pull request #9 from newsguildny/feature/SCST

Merge pull request #9 from newsguildny/feature/SCST #7

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 }}