File tree 3 files changed +17
-4
lines changed
3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 35
35
shell : bash
36
36
run : |
37
37
echo "rzk-version=${{ steps.rzk-check.outputs.rzk-version }}"
38
+
39
+ - name : Run the action again, using previously installed rzk
40
+ uses : ./
41
+ with :
42
+ system-rzk : true
43
+ rzk-version : " must be ignored!"
44
+ files : ${{ matrix.files }}
Original file line number Diff line number Diff line change @@ -23,10 +23,11 @@ The following example runs `rzk typecheck` on all literate Rzk Markdown files in
23
23
24
24
# # Inputs
25
25
26
- | Name | Required | Description | Type | Default |
27
- | ------------- | :------ : | ---------------------------------------------------- | ------ | ----------------------------- |
28
- | `rzk-version` | No | `rzk` version to use, ex. `latest` or `v0.5.3` | string | `latest` |
29
- | `files` | No | Files to process, ex. `lib/**/*.rzk src/**/*.rzk.md` | string | Rely on local `rzk.yaml` file |
26
+ | Name | Required | Description | Type | Default |
27
+ | ------------- | :------ : | ---------------------------------------------------- | ------- | ----------------------------- |
28
+ | `rzk-version` | No | `rzk` version to use, ex. `latest` or `v0.5.3` | string | `latest` |
29
+ | `files` | No | Files to process, ex. `lib/**/*.rzk src/**/*.rzk.md` | string | Rely on local `rzk.yaml` file |
30
+ | `system-rzk` | No | Use `rzk` executable provided by the system | boolean | `false` |
30
31
31
32
# # Outputs
32
33
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ branding:
5
5
icon : " triangle" # 2-simplex? :)
6
6
7
7
inputs :
8
+ system-rzk :
9
+ description : " Use system rzk (instead of downloading binaries)"
10
+ required : false
11
+ default : false
8
12
rzk-version :
9
13
description : " Version of Rzk to use (latest by default)"
10
14
required : false
24
28
steps :
25
29
- name : 🔨 Install Rzk proof assistant
26
30
uses : jaxxstorm/action-install-gh-release@v1.10.0
31
+ if : ${{ inputs.system-rzk == 'false' }}
27
32
with :
28
33
repo : fizruk/rzk
29
34
tag : ${{ inputs.rzk-version }}
You can’t perform that action at this time.
0 commit comments