We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6f7f08 commit dbc2be3Copy full SHA for dbc2be3
.github/workflows/build.yml
@@ -11,26 +11,25 @@ jobs:
11
steps:
12
- name: Check if a build should be released.
13
uses: actions/checkout@v4
14
-
15
- - name: Check
16
env:
17
GH_TOKEN: ${{ github.token }}
18
shell: bash
19
run: |
20
if [[ "${{ github.event.head_commit.message }}" != *"release:"* ]]; then
21
exit 1
22
fi
23
24
build:
25
runs-on: windows-latest
26
needs: checkout
27
28
- - name: Build
+ - name: Install & setup MSYS2 environment.
29
uses: msys2/setup-msys2@v2
30
with:
31
msystem: UCRT64
32
update: true
33
install: git mingw-w64-ucrt-x86_64-gcc mingw-w64-ucrt-x86_64-MinHook
+
+ - name: Build a new release with required UCRT64 packages.
34
shell: msys2 {0}
35
36
which gcc
0 commit comments