Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
if [ "${{ github.event_name }}" = "release" ]; then
echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
else
echo "version=0.0.0-pr${{ github.event.pull_request.number }}" >> $GITHUB_OUTPUT
echo "version=0.0.0.${{ github.event.pull_request.number }}" >> $GITHUB_OUTPUT
fi

- name: Upload dist
Expand Down
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,23 @@ scp -r moci/* root@192.168.1.1:/www/moci/

### Option 1: Package (Recommended)

Download the ipk for your architecture from [Releases](https://github.com/HudsonGraeme/MoCI/releases/latest):
Download the package for your architecture from [Releases](https://github.com/HudsonGraeme/MoCI/releases/latest).

**OpenWrt 24.10 and earlier (opkg):**

```bash
wget https://github.com/HudsonGraeme/MoCI/releases/latest/download/moci_VERSION_ARCH.ipk
opkg install moci_VERSION_ARCH.ipk
```

Available architectures: x86_64, ramips/mt7621, ath79, mediatek/filogic, bcm27xx, ipq40xx, mvebu, ipq806x
**OpenWrt 25.12+ (apk):**

```bash
wget https://github.com/HudsonGraeme/MoCI/releases/latest/download/moci_VERSION_ARCH.apk
apk add --allow-untrusted moci_VERSION_ARCH.apk
```

Available architectures: x86_64, mipsel_24kc, mips_24kc, aarch64_cortex-a53, aarch64_cortex-a72, arm_cortex-a7_neon-vfpv4, arm_cortex-a9_vfpv3-d16, arm_cortex-a15_neon-vfpv4

Replace `VERSION_ARCH` with your specific file from the releases page.

Expand Down Expand Up @@ -123,7 +132,7 @@ git clone https://github.com/HudsonGraeme/MoCI.git package/moci
make package/moci/compile
```

The package will be in `bin/packages/*/base/moci_*.ipk`
The package will be in `bin/packages/*/base/moci_*.ipk` (24.10) or `bin/packages/*/base/moci-*.apk` (25.12+)

---

Expand Down
Loading