Skip to content

Bump 0.3.0

Bump 0.3.0 #20

Workflow file for this run

name: deploy-app
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
env:
CI: false
PUBLIC_URL: "/gephi-lite"
REACT_APP_GITHUB_PROXY: "https://githubapi.gephi.org"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache node_modules
uses: actions/cache@v3
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install
run: npm install
- name: Build
run: npm run build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: build # The folder the action should deploy.