Skip to content
This repository was archived by the owner on May 25, 2025. It is now read-only.
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Workflows

`build.yml` - Simply uploads a build artifact of the static website\
`deploy.yml` - Builds, uploads, and deploys the uploaded artifact to github pages

# Issues

You may encounter that the deploy workflow does not work, this is because github pages prefixes a subdirectory with your repository name when deploying. This breaks the static site generated by Vuepress

Use cloudflare pages instead or test locally with `npm run start`

### If that is not possible

`deploy(legacy).yml` - Builds and pushes the static site to the branch `gh-pages`. This stops the automatic subdirectory addition from happening

This may break other pages that you have deployed and should be avoided if possible. Please use _cloudflare pages_ instead

If that is not possible, you may edit the `base` property in `config.js` and use `deploy.yml`, this may break asset retrieval (images in our case)
##### Remember to revert this change on the PR branch
31 changes: 31 additions & 0 deletions .github/workflows/deploy(legacy).yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build And Deploy (Legacy [gh-pages])
on:
push:
branches-ignore:
- gh-pages
workflow_dispatch:
# pull_request:
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: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.5
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main'}}
with:
BRANCH: gh-pages
FOLDER: docs
CLEAN: true
2 changes: 1 addition & 1 deletion markdown/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ module.exports = {
displayAllHeaders: false,
lastUpdated: true,
repo: "https://github.com/PojavLauncherTeam/PojavLauncherTeam.github.io/",
docsDir: "",
docsDir: "markdown",
docsBranch: "main",
editLinks: true,
editLinkText: "Help us improve this page!",
Expand Down
4 changes: 2 additions & 2 deletions markdown/wiki/getting_started/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Note: **Enable URL Schemes in TrollStore settings.**
- 14.0 to 16.6.1
- 17.0

1. Follow these steps to install [TrollStore](https://github.com/opa334/TrollStore).
1. Follow these steps to install [TrollStore](https://ios.cfw.guide/installing-trollstore/).

2. Download the latest release from [here](https://github.com/PojavLauncherTeam/PojavLauncher_iOS/releases/download/v2.2/net.kdt.pojavlauncher-2.2-ios.ipa).
- For a specific release, you can find its package on the [Releases](https://github.com/PojavLauncherTeam/PojavLauncher_iOS/releases) page
Expand All @@ -87,7 +87,7 @@ PojavLauncher supports being sideloaded with AltStore and SideStore. Instruction
2. Install the latest release using this [Install with AltStore](altstore://install?url=https://github.com/PojavLauncherTeam/PojavLauncher_iOS/releases/latest/download/net.kdt.pojavlauncher.ipa) button.
- For a specific release, you can find its button on the [Releases](https://github.com/PojavLauncherTeam/PojavLauncher_iOS/releases) page

Installing PojavLauncher is not the end for Jailed iOS devices. In order to play Minecraft itself, you will need to [enable JIT](./JIT.md).
Installing PojavLauncher is not the end for Jailed iOS devices. In order to play Minecraft itself, you will need to [enable JIT](../faq/ios/JIT.md).
:::

::: details Sideloading (Jailbroken)
Expand Down
Loading