Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit 0363d1f

Browse files
committed
Github Actions stuff part 4
1 parent 439e823 commit 0363d1f

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/build.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ jobs:
2121
- name: Build Go shared library (.dll)
2222
run: |
2323
cd go_spammer
24-
go build -o spammer.dll -buildmode=c-shared main.go
25-
mkdir -p ../shared
26-
mv spammer.dll ../shared/spammer.dll
24+
go build -o ../shared/spammer.dll -buildmode=c-shared main.go
2725
2826
- name: Commit and push changes
2927
run: |
@@ -54,9 +52,7 @@ jobs:
5452
- name: Build Go shared library (.so)
5553
run: |
5654
cd go_spammer
57-
go build -o spammer.so -buildmode=c-shared main.go
58-
mkdir -p ../shared
59-
mv spammer.so ../shared/spammer.so
55+
go build -o ../shared/spammer.so -buildmode=c-shared main.go
6056
6157
- name: Commit and push changes
6258
run: |

0 commit comments

Comments
 (0)