Skip to content

Update index.tsx

Update index.tsx #167

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: GitHub Pages deploy
on:
push:
paths:
- erc223-page-sources/**
branches: [master]
concurrency:
group: ci-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Installing my packages
run: cd erc223-page-sources && npm install
- name: Build my App
run: cd erc223-page-sources && npm run build && npm run export
- name: Move build to erc folder 🚀
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
GITHUB_TOKEN: ${{ secrets.token }}
BRANCH: master # The branch the action should deploy to.
FOLDER: erc223-page-sources/out # The folder the action should deploy.
target-folder: erc223