Skip to content

change variant link of disease search #129

change variant link of disease search

change variant link of disease search #129

Workflow file for this run

name: Publish GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: npm
- name: Install dependencies
run: npm config set '//npm.fontawesome.com/:_authToken' "${{ secrets.ICON_TOKEN }}"
- run: npm ci
- run: npx togostanza build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./dist
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1