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

Commit

Permalink
Github Actions stuff part 4
Browse files Browse the repository at this point in the history
  • Loading branch information
M-logique committed Sep 8, 2024
1 parent 439e823 commit 0363d1f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ jobs:
- name: Build Go shared library (.dll)
run: |
cd go_spammer
go build -o spammer.dll -buildmode=c-shared main.go
mkdir -p ../shared
mv spammer.dll ../shared/spammer.dll
go build -o ../shared/spammer.dll -buildmode=c-shared main.go
- name: Commit and push changes
run: |
Expand Down Expand Up @@ -54,9 +52,7 @@ jobs:
- name: Build Go shared library (.so)
run: |
cd go_spammer
go build -o spammer.so -buildmode=c-shared main.go
mkdir -p ../shared
mv spammer.so ../shared/spammer.so
go build -o ../shared/spammer.so -buildmode=c-shared main.go
- name: Commit and push changes
run: |
Expand Down

0 comments on commit 0363d1f

Please sign in to comment.