Skip to content

Added contributors to credits.mdx #24

Added contributors to credits.mdx

Added contributors to credits.mdx #24

Workflow file for this run

name: Deploy test site
on:
push:
branches: [main]
permissions:
pages: write
id-token: write
contents: read
jobs:
build:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- name: Install dependencies
run: npm ci
- name: Build site
env:
URL: https://projectnyxian.github.io
BASE_URL: /nyxian.app/
run: npm run build
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: build
deploy:
name: Deploy to GitHub Pages
needs: build
runs-on: ubuntu-latest
steps:
- name: Deploy
uses: actions/deploy-pages@v4