@mizchi/actrun 0.8.0 → 0.9.0

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +1 -1
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mizchi/actrun",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "A local GitHub Actions runner",
5
5
  "bin": {
6
6
  "actrun": "./dist/actrun.js"