Skip to content

Publish

Publish #35

Workflow file for this run

name: deploy-app
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
env:
CI: false
VITE_GITHUB_PROXY: "https://githubapi.gephi.org"
VITE_MATOMO_URL: "https://matomo.ouestware.com"
VITE_MATOMO_SITEID: 32
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache node_modules
uses: actions/cache@v4
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/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: packages/gephi-lite/build # The folder the action should deploy.