Skip to content

Migrate site to new format #303

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
20 changes: 0 additions & 20 deletions .editorconfig

This file was deleted.

42 changes: 42 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- main
workflow_dispatch:

jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
id-token: write

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

- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install Dependencies
run: npm install

- name: Build Site
run: npm run build

- name: Upload Artifact
uses: actions/upload-pages-artifact@v3
with:
path: "./_dist"

- name: Deploy to GitHub pages
id: deployment
uses: actions/deploy-pages@v4
60 changes: 0 additions & 60 deletions .github/workflows/deploy-pnpm.yaml

This file was deleted.

61 changes: 0 additions & 61 deletions .github/workflows/deploy.yaml

This file was deleted.

45 changes: 0 additions & 45 deletions .github/workflows/lint.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/spell-checker.yaml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/test-deploy-pnpm.yaml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/test-deploy.yaml

This file was deleted.

6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/node_modules
docs/.vuepress/.cache
docs/.vuepress/.temp
docs/.vuepress/dist/*
.DS_Store
_dist
docs_old
#Temporary ^^
4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

8 changes: 0 additions & 8 deletions .remarkrc

This file was deleted.

Loading