Skip to content

fix: is defined by uris #20

fix: is defined by uris

fix: is defined by uris #20

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
deploy:
name: 'Deploy Ontology Documentation'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Build site
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
working-directory: ./website
run: |
npm install
npm run build
# - name: Build example application
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# working-directory: ./examples/eswc2024
# run: |
# npm install --force
# npm run build
# cp ./dist ../website/application
- name: Deploy site to GitHub
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./website/_site