Skip to content

Commit

Permalink
Added continous deployment to gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
jesper-friis committed Mar 22, 2024
1 parent 2cb8b5b commit a2d5dd9
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/cd_ghpages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy on GitHub Pages
on:
push:
branches: [master]

permissions:
contents: write


jobs:
deploy-on-ghpages:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11

- name: Install EMMOntoPy
run: |
pip install --upgrade pip
pip install EMMOntoPy
- name: Create squashed and inferred ontology
run: |
mkdir build
ontoconvert -saw --base-iri "https://w3id.org/emmo#" --iri "https://w3id.org/emmo" microstructure.ttl build/microstructure.ttl
ontoconvert -saw -i --base-iri "https://w3id.org/emmo#" --iri "https://w3id.org/emmo" microstructure.ttl build/microstructure-inferred.ttl
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build
branch: gh-pages

0 comments on commit a2d5dd9

Please sign in to comment.