Skip to content

Commit

Permalink
Fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
stevemk14ebr committed Oct 6, 2023
1 parent 3409ba6 commit 9a35d65
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/main.yaml
Expand Up @@ -14,13 +14,12 @@ jobs:
- run: go version
- name: GoReSym Build
run: |
export GOOS=linux
go build && mv GoReSym GoReSym_lin
export GOOS=windows
go build && mv GoReSym.exe GoReSym_win.exe
export GOOS=darwin
go build && mv GoReSym GoReSym_mac
export GOOS=linux
$Env:GOOS='linux'
go build -o GoReSym_lin
$Env:GOOS='windows'
go build -o GoReSym_win.exe
$Env:GOOS='darwin'
go build -o GoReSym_mac
- name: Zip Build
run: |
Compress-Archive -DestinationPath GoReSym.zip -LiteralPath ./GoReSym_lin, ./GoReSym_win.exe, ./GoReSym_mac -CompressionLevel Fastest
Expand Down

0 comments on commit 9a35d65

Please sign in to comment.