Skip to content

Commit c2a185f

Browse files
committed
Don't do the build twice on Windows.
1 parent ead5c69 commit c2a185f

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

.github/workflows/ccpp.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,7 @@ jobs:
5252
- uses: actions/checkout@v3
5353
- name: build
5454
run: |
55-
make LDFLAGS="-s -static"
56-
- name: package
57-
run: |
58-
make ack-setup.exe
55+
make LDFLAGS="-s -static" ack-setup.exe
5956
- name: upload setup
6057
uses: actions/upload-artifact@v4
6158
with:

.github/workflows/release.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,7 @@ jobs:
3838

3939
- name: build
4040
run: |
41-
make LDFLAGS="-s -static"
42-
43-
- name: package
44-
run: |
45-
make ack-setup.exe
41+
make LDFLAGS="-s -static" ack-setup.exe
4642
4743
- name: date
4844
run: |

0 commit comments

Comments
 (0)