@mizchi/actrun 0.8.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/actrun.js +1118 -57086
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -5,12 +5,18 @@ A local GitHub Actions runner built with [MoonBit](https://docs.moonbitlang.com)
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
+
# npx (no install required)
|
|
9
|
+
npx @mizchi/actrun workflow run .github/workflows/ci.yml
|
|
10
|
+
|
|
8
11
|
# curl (Linux / macOS)
|
|
9
12
|
curl -fsSL https://raw.githubusercontent.com/mizchi/actrun/main/install.sh | sh
|
|
10
13
|
|
|
11
14
|
# Docker
|
|
12
15
|
docker run --rm -v "$PWD":/workspace -w /workspace ghcr.io/mizchi/actrun workflow run .github/workflows/ci.yml
|
|
13
16
|
|
|
17
|
+
# npm global install
|
|
18
|
+
npm install -g @mizchi/actrun
|
|
19
|
+
|
|
14
20
|
# moon install
|
|
15
21
|
moon install mizchi/actrun/cmd/actrun
|
|
16
22
|
|