0.1.3 #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
push: | |
tags: | |
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Prepare git | |
run: git config --global core.autocrlf false | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
# Setup .npmrc file to publish to npm | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16.x" | |
registry-url: "https://registry.npmjs.org" | |
- run: npm ci | |
- name: Build contract | |
run: npm run build:contract | |
# build the react app | |
- name: Build | |
run: npm run build | |
# deploy the react app to github pages | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
# NOTE: GITHUB_TOKEN is a secret token that is automatically generated by GitHub | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build # directory to deploy |