We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e09c45 commit a976850Copy full SHA for a976850
.github/workflows/release.yml
@@ -14,11 +14,11 @@ jobs:
14
- name: Checkout code
15
uses: actions/checkout@v3
16
17
- # Set up MinGW for compiling C code
18
- - name: Set up MinGW
19
- uses: lucacome/action-setup-mingw@v1
20
- with:
21
- architecture: x64
+ # Install MinGW
+ - name: Install MinGW
+ run: |
+ choco install mingw -y
+ echo "C:\Program Files\mingw-w64\bin" >> $env:GITHUB_PATH
22
23
# Compile the C file
24
- name: Compile test.c
0 commit comments