Skip to content

Update app url and citation in the README.md #23

Update app url and citation in the README.md

Update app url and citation in the README.md #23

Workflow file for this run

name: GitHub Pages Deployment
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Install dependencies
run: npm ci
- name: Compile
run: npm run build -- --base-href ${{ steps.pages.outputs.base_path }}/
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./dist${{ steps.pages.outputs.base_path }}
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2