diff --git a/.github/workflows/check_nightly.yml b/.github/workflows/check_nightly.yml index ae2bbf2..9ea61c6 100644 --- a/.github/workflows/check_nightly.yml +++ b/.github/workflows/check_nightly.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: nightly - name: install elan diff --git a/README.md b/README.md index 6ecc300..c43a597 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ See [the documentation of Lake](https://github.com/leanprover/lake). Use one of the following for the `` in the dependency source `Source.git "https://github.com/mhuisi/lean4-cli.git" ""`: -- `main` if you want to stay in sync with Lean 4 milestone releases. The `main` branch will contain a working version of lean4-cli for the most recent Lean 4 milestone. +- `main` if you want to stay in sync with Lean 4 stable releases. The `main` branch will contain a working version of lean4-cli for the most recent Lean 4 stable release. - `nightly` if you want to stay in sync with Lean 4 nightly releases. The `nightly` branch will contain a working version of lean4-cli for the most recent Lean 4 nightly build. -- One of the specific release tags if you want to pin a specific version, e.g. `v2.0.0-lv4.0.0-m5` for v2.0.0 and the 5th Lean 4 milestone release or `v2.2.0-lnightly-2023-08-23` for v2.2.0 and the Lean 4 nightly version from 2023-08-23. +- One of the specific release tags if you want to pin a specific version, e.g. `v2.2.0-lv4.0.0` for v2.2.0 of lean4-cli and the Lean 4 stable release with version v4.0.0 or `v2.2.0-lnightly-2023-08-23` for v2.2.0 of lean4-cli and the Lean 4 nightly version from 2023-08-23. ### Configuration Commands are configured with a lightweight DSL. The following declarations define a command `exampleCmd` with two subcommands `installCmd` and `testCmd`. `runExampleCmd` denotes a handler that is called when the command is run and is described further down below in the **Command Handlers** subsection.