Skip to content

Merge branch 'feature/update-projects' into develop #40

Merge branch 'feature/update-projects' into develop

Merge branch 'feature/update-projects' into develop #40

Workflow file for this run

name: Publish beta on Surge
on:
push:
branches:
- develop
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install and Build πŸ”§
run: |
npm install
npm install surge
npm run build
- name: Deploy πŸš€
run: ./node_modules/.bin/surge -p dist --domain ${{ secrets.SURGE_DOMAIN }} --token ${{ secrets.SURGE_TOKEN }}