Skip to content

v0.9.80

v0.9.80 #674

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build and Deploy
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
- name: install dependencies
run: npm install
- name: Build
run: npm run build
env:
CI: false
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: packages/dapp-example/build # The folder the action should deploy.