@@ -52,64 +52,64 @@ Alternatively, you can use the container-based approach [as in the starter workf
52
52
53
53
### Inputs
54
54
55
- * * **` crystal: 0.35.1`** (not supported on Windows)
55
+ * * **` crystal: 0.35.1`** (not supported on Windows)
56
56
57
- Install a particular release of Crystal.
57
+ Install a particular release of Crystal.
58
58
59
- * **`crystal: latest`** (default; not supported on Windows)
59
+ * **`crystal: latest`** (default; not supported on Windows)
60
60
61
- Install the latest released version of Crystal.
61
+ Install the latest released version of Crystal.
62
62
63
- * **`crystal: nightly`** (default on Windows)
63
+ * **`crystal: nightly`** (default on Windows)
64
64
65
- Install Crystal from the latest continuous build on [crystal.git][] master.
65
+ Install Crystal from the latest continuous build on [crystal.git][] master.
66
66
67
- * * **`shards: true`** (default)
67
+ * * **`shards: true`** (default)
68
68
69
- Ensure that *some* released version of [Shards][] is available.
70
- This uses the build that's bundled with Crystal's releases. Other options are slower, as building Shards is a necessary step then.
69
+ Ensure that *some* released version of [Shards][] is available.
70
+ This uses the build that's bundled with Crystal's releases. Other options are slower, as building Shards is a necessary step then.
71
71
72
- * **`shards: false`**
72
+ * **`shards: false`**
73
73
74
- Ensure that `shards` executable is *not* available.
74
+ Ensure that `shards` executable is *not* available.
75
75
76
- * **`shards: latest`**
76
+ * **`shards: latest`**
77
77
78
- Build and install the latest released version of Shards.
78
+ Build and install the latest released version of Shards.
79
79
80
- * **`shards: 0.13.0`**
80
+ * **`shards: 0.13.0`**
81
81
82
- Build and install a particular release of Shards.
82
+ Build and install a particular release of Shards.
83
83
84
- * **`shards: nightly`**
84
+ * **`shards: nightly`**
85
85
86
- Build and install the latest commit of [shards.git][] master.
86
+ Build and install the latest commit of [shards.git][] master.
87
87
88
- * **`arch: x86_64`**, **`arch: x86`** (defaults to current OS arch)
88
+ * **`arch: x86_64`**, **`arch: x86`** (defaults to current OS arch)
89
89
90
- The architecture of the build of Crystal to download.
90
+ The architecture of the build of Crystal to download.
91
91
92
- * **`destination: some/path`**
92
+ * **`destination: some/path`**
93
93
94
- The directory to store Crystal in, after extracting. Will directly affect `outputs.path` (the default is in a temporary location).
94
+ The directory to store Crystal in, after extracting. Will directly affect `outputs.path` (the default is in a temporary location).
95
95
96
- * **`token: ${{ github.token }}`**
96
+ * **`token: ${{ github.token }}`**
97
97
98
- Personal access token (auto-populated).
98
+ Personal access token (auto-populated).
99
99
100
100
# ## Outputs
101
101
102
- * **`crystal`** (`${{ steps.some_step_id.outputs.crystal }}`)
102
+ * **`crystal`** (`${{ steps.some_step_id.outputs.crystal }}`)
103
103
104
- The actual version of Crystal (as a ref in crystal-lang/[crystal.git][]) that was installed.
104
+ The actual version of Crystal (as a ref in crystal-lang/[crystal.git][]) that was installed.
105
105
106
- * **`shards`** (`${{ steps.some_step_id.outputs.shards }}`)
106
+ * **`shards`** (`${{ steps.some_step_id.outputs.shards }}`)
107
107
108
- The actual version of Shards (as a ref in crystal-lang/[shards.git][]) that was installed.
108
+ The actual version of Shards (as a ref in crystal-lang/[shards.git][]) that was installed.
109
109
110
- * **`path`** (`${{ steps.some_step_id.outputs.path }}`)
110
+ * **`path`** (`${{ steps.some_step_id.outputs.path }}`)
111
111
112
- The path where Crystal was extracted to, so you can use '[path]/bin/crystal', '[path]/src' etc.
112
+ The path where Crystal was extracted to, so you can use '[path]/bin/crystal', '[path]/src' etc.
113
113
114
114
[github action] : https://github.com/features/actions
115
115
[crystal] : https://crystal-lang.org/
0 commit comments