mirror of
https://github.com/kbenestad/mdcms.git
synced 2026-06-18 15:24:32 +00:00
Fix install.md: install from GitHub until mdcms is on PyPI
This commit is contained in:
parent
997ef27c5a
commit
95eec13611
1 changed files with 11 additions and 3 deletions
|
|
@ -15,9 +15,14 @@ Download the binary for your platform from the [latest release](https://github.c
|
||||||
- **macOS:** `mdcms-macos-arm64` → move to `/usr/local/bin/mdcms` and `chmod +x`
|
- **macOS:** `mdcms-macos-arm64` → move to `/usr/local/bin/mdcms` and `chmod +x`
|
||||||
- **Windows:** `mdcms-windows-amd64.exe` → rename to `mdcms.exe` and place it somewhere on your PATH
|
- **Windows:** `mdcms-windows-amd64.exe` → rename to `mdcms.exe` and place it somewhere on your PATH
|
||||||
|
|
||||||
**Via pipx (Python users)**
|
**Via pip (from GitHub)**
|
||||||
```bash
|
```bash
|
||||||
pipx install mdcms
|
pip install git+https://github.com/kbenestad/mdcms.git
|
||||||
|
```
|
||||||
|
|
||||||
|
**Via pipx (from GitHub)**
|
||||||
|
```bash
|
||||||
|
pipx install git+https://github.com/kbenestad/mdcms.git
|
||||||
```
|
```
|
||||||
|
|
||||||
Verify the installation:
|
Verify the installation:
|
||||||
|
|
@ -105,6 +110,9 @@ on:
|
||||||
- "posts/**"
|
- "posts/**"
|
||||||
- "config.yml"
|
- "config.yml"
|
||||||
|
|
||||||
|
env:
|
||||||
|
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
@ -116,7 +124,7 @@ jobs:
|
||||||
python-version: "3.12"
|
python-version: "3.12"
|
||||||
|
|
||||||
- name: Install mdcms
|
- name: Install mdcms
|
||||||
run: pip install mdcms
|
run: pip install git+https://github.com/kbenestad/mdcms.git
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: mdcms build
|
run: mdcms build
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue