Skip to content
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

[Major Rework] Lofty Pillars #231

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
b47d13e
added tut for fixing create, added mekanism and quartz
sa1672ndo Sep 25, 2024
ab480ed
Update MODS-UNSUPPORTED.md
sa1672ndo Oct 1, 2024
8bbd030
Updated terms and stuff
ItAnthon Nov 23, 2024
177042a
Update RPWORLDNOTSHOWINGUP.md
Dev1ss0 Dec 19, 2024
6be9179
renaming to INSTALLATIONOFMODSRPWORLDS.md
Dev1ss0 Dec 20, 2024
88f0ded
Update config.js
Dev1ss0 Dec 20, 2024
9ef23c1
Update and rename DISCORD.md to SOCIALMEDIA.md
Dev1ss0 Dec 20, 2024
91ea84f
Update config.js
Dev1ss0 Dec 20, 2024
afaf435
Updated order of FAQ platforms (hopefully works well)
Dev1ss0 Dec 26, 2024
e24e920
Rework into new layout as well as proper navbar utilization
alexytomi Dec 24, 2024
194b6e1
Add some documentation in the form of a README.md
alexytomi Dec 26, 2024
a7c26b5
Clean-up and documentation for .vuepress/config/*
alexytomi Dec 26, 2024
6bc0828
Changes to package.json and workflow to build and deploy properly
alexytomi Dec 26, 2024
367af40
Small corrections and changes
alexytomi Dec 27, 2024
51d0b76
[WIP] Move page-related comments and add more info to README and decl…
alexytomi Dec 28, 2024
8ec6d90
Fix indentation in config.js
alexytomi Dec 28, 2024
401cc76
[WIP] Remove horrible hack that doesn't even work properly in github
alexytomi Dec 28, 2024
2a7efc9
Remove .editorconfig and add to .gitignore
alexytomi Dec 28, 2024
4f9c8b2
Finish rebasing on Dev1ss0/PojavlauncherWikiTesting:Dev1ss0-testing
alexytomi Dec 28, 2024
db0a034
Indentation changes and fixes, dejankification of sidebar generation,…
alexytomi Jan 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .editorconfig

This file was deleted.

27 changes: 10 additions & 17 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,25 @@
name: Build/Test/Deploy
name: Build
on:
push:
branches-ignore:
- gh-pages
workflow_dispatch:
pull_request:
jobs:
build:
name: Build and Deploy
name: Build and Upload
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2-beta
with:
node-version: '12'
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: '0'
persist-credentials: false
submodules: 'recursive'
- name: Install
run: npm install
- name: Setup Node
uses: actions/setup-node@v2-beta
with:
node-version: '22'
- name: Build
run: npm run build
- name: Deploy
uses: JamesIves/[email protected]
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main'}}
run: npm install && npm run build
- name: Upload Build
uses: actions/upload-pages-artifact@v3
with:
BRANCH: gh-pages
FOLDER: docs
CLEAN: true
path: docs
38 changes: 38 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build and Deploy
on:
workflow_dispatch:
jobs:
build:
name: Build and Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: '0'
persist-credentials: false
submodules: 'recursive'
- name: Setup Node
uses: actions/setup-node@v2-beta
with:
node-version: '22'
- name: Build
run: npm install && npm run build
- name: Upload static files as artifact
id: deployment
uses: actions/upload-pages-artifact@v3 # or specific "vX.X.X" version tag for this action
with:
path: docs
deploy:
environment:
name: Deploy
permissions:
contents: read
pages: write
id-token: write
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ Thumbs.db
docs/

package-lock.json
.editorconfig
.nvmrc
out
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

205 changes: 0 additions & 205 deletions .vuepress/config.js

This file was deleted.

Binary file removed .vuepress/public/favicon.ico
Binary file not shown.
52 changes: 0 additions & 52 deletions ABOUTPOJAV.md

This file was deleted.

6 changes: 0 additions & 6 deletions DISCORD.md

This file was deleted.

Empty file removed FIRST-STEPS.md
Empty file.
23 changes: 0 additions & 23 deletions MODDED-MC.md

This file was deleted.

Loading
Loading