Replaced AltStore’s instructions with SideStore’s, added additional information regarding jailbreaking with Palera1n + included basic steps for enabling URLScheme in TrollStore #385
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
workflow_dispatch: | |
workflow_call: | |
pull_request: | |
jobs: | |
build: | |
name: Build and Upload | |
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 Build | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: docs |