Skip to content

Commit 61f9e5e

Browse files
committed
v2.27.0 27a1c11
1 parent d44ca8e commit 61f9e5e

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Setup MSYS2
1313

1414
**setup-msys2** is a GitHub Action (GHA) to setup an [MSYS2](https://www.msys2.org/) environment (i.e. MSYS,
15-
MINGW32, MINGW64, UCRT64, CLANG32, CLANG64 and/or CLANGARM64 shells)
15+
MINGW32, MINGW64, UCRT64, CLANG64 and/or CLANGARM64 shells)
1616

1717
It provides:
1818

@@ -69,8 +69,8 @@ In order to reduce verbosity, it is possible to set `msys2` as the default shell
6969

7070
It is common to test some package/tool on multiple environments, which typically requires installing different sets of
7171
packages through option `install`.
72-
GitHub Actions' `strategy` and `matrix` fields allow to do so, as explained in [docs.github.com: Configuring a build matrix](https://docs.github.com/en/actions/configuring-and-managing-workflows/configuring-a-workflow#configuring-a-build-matrix)
73-
and [docs.github.com: `jobs.<job_id>.strategy.matrix`](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix).
72+
GitHub Actions' `strategy` and `matrix` fields allow to do so, as explained in [docs.github.com: Running variations of jobs in a workflow](https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow)
73+
and [docs.github.com: `jobs.<job_id>.strategy.matrix`](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix).
7474
See, for instance:
7575

7676
```yml
@@ -105,15 +105,15 @@ Alternatively, option `pacboy` allows using a single matrix variable:
105105
pacboy: openssl:p
106106
```
107107

108-
Furthermore, [.github/workflows/PKGBUILD.yml](.github/workflows/PKGBUILD.yml) is a [Reusable Workflow](https://docs.github.com/en/actions/learn-github-actions/reusing-workflows)
108+
Furthermore, [.github/workflows/PKGBUILD.yml](.github/workflows/PKGBUILD.yml) is a [Reusable Workflow](https://docs.github.com/en/actions/sharing-automations/reusing-workflows)
109109
to build and test a package in GitHub Actions using a PKGBUILD recipe.
110-
It can be used along with [matrix](./matrix) (a [Composite Action](https://docs.github.com/en/actions/creating-actions/creating-a-composite-action)),
110+
It can be used along with [matrix](./matrix) (a [Composite Action](https://docs.github.com/en/actions/sharing-automations/creating-actions/creating-a-composite-action)),
111111
as shown in [.github/workflows/Tool.yml](.github/workflows/Tool.yml).
112112

113113
Note: By default, GitHub Actions terminates any running jobs if any job in matrix
114114
fails. This default behavior can be disabled by setting `fail-fast: false` in
115115
strategy section. See
116-
[docs.github.com: `jobs.<job_id>.strategy.fail-fast`](https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast)
116+
[docs.github.com: `jobs.<job_id>.strategy.fail-fast`](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast)
117117
for more details.
118118

119119
Find similar patterns in the following workflows:
@@ -128,7 +128,7 @@ Find further details at [#171](https://github.com/msys2/setup-msys2/issues/171#i
128128
#### msystem
129129

130130
* Type: `string`
131-
* Allowed values: `MSYS | MINGW64 | MINGW32 | UCRT64 | CLANG32 | CLANG64 | CLANGARM64`
131+
* Allowed values: `MSYS | MINGW64 | MINGW32 | UCRT64 | CLANG64 | CLANGARM64`
132132
* Default: `MINGW64`
133133

134134
The default [environment](https://www.msys2.org/docs/environments/) that is used in the `msys2` command/shell provided by this action.

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ branding:
55
icon: terminal
66
inputs:
77
msystem:
8-
description: 'Variant of the environment to set by default: MSYS, MINGW32, MINGW64, UCRT64, CLANG32, CLANG64 or CLANGARM64'
8+
description: 'Variant of the environment to set by default: MSYS, MINGW32, MINGW64, UCRT64, CLANG64 or CLANGARM64'
99
required: false
1010
default: 'MINGW64'
1111
path-type:

index.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)