Skip to content

Commit dbc2be3

Browse files
committed
release: Update actions file.
1 parent f6f7f08 commit dbc2be3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,25 @@ jobs:
1111
steps:
1212
- name: Check if a build should be released.
1313
uses: actions/checkout@v4
14-
15-
- name: Check
1614
env:
1715
GH_TOKEN: ${{ github.token }}
1816
shell: bash
1917
run: |
2018
if [[ "${{ github.event.head_commit.message }}" != *"release:"* ]]; then
2119
exit 1
2220
fi
23-
2421
build:
2522
runs-on: windows-latest
2623
needs: checkout
2724
steps:
28-
- name: Build
25+
- name: Install & setup MSYS2 environment.
2926
uses: msys2/setup-msys2@v2
3027
with:
3128
msystem: UCRT64
3229
update: true
3330
install: git mingw-w64-ucrt-x86_64-gcc mingw-w64-ucrt-x86_64-MinHook
31+
32+
- name: Build a new release with required UCRT64 packages.
3433
shell: msys2 {0}
3534
run: |
3635
which gcc

0 commit comments

Comments
 (0)