Skip to content

Commit

Permalink
Merge branch 'development' of https://github.com/NFDI4Chem/nmrxiv int…
Browse files Browse the repository at this point in the history
…o development
  • Loading branch information
CS76 committed Oct 19, 2023
2 parents c2c0cc5 + 598f571 commit 330f92b
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Docs Deployment - GitHub pages
on:
workflow_dispatch: {}
push:
branches:
- development
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- run: npm ci
- name: Build
run: npm run docs:build
- uses: actions/configure-pages@v2
- uses: actions/upload-pages-artifact@v1
with:
path: docs/.vitepress/dist
- name: Deploy
id: deployment
uses: actions/deploy-pages@v2.0.2
4 changes: 4 additions & 0 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ env:
DOCKER_HUB_PASSWORD : ${{ secrets.DOCKER_HUB_PASSWORD }}
REPOSITORY_NAME: nmrxiv
REPOSITORY_NAMESPACE: nfdi4chem
DEV_URL: https://dev.nmrxiv.org

jobs:
# php-unit-test:
Expand Down Expand Up @@ -71,6 +72,9 @@ jobs:
name: Build & deploy to development
runs-on: ubuntu-latest
needs: php-unit-test
environment:
name: Dev
url: ${{ env.DEV_URL }}
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
5 changes: 5 additions & 0 deletions docs/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ export default defineConfig({
title: "nmrXiv",
description: "FAIR, consensus-driven NMR data repository and computational platform",
ignoreDeadLinks: true,
base: '/nmrxiv/',

themeConfig: {
search: {
provider: 'local'
},

logo: {
light: "/logo.svg",
dark: "/logo-dark.svg",
Expand Down

0 comments on commit 330f92b

Please sign in to comment.