Skip to content

Commit

Permalink
Merge pull request #3 from maldan/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
maldan authored Jun 11, 2021
2 parents 919bfe4 + 5212d98 commit 414abcc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
go-version: "1.16"
- run: go version

- run: GOARCH=amd64 GOOS=linux go build -ldflags "-s -w" ./internal/app/gam
- run: GOARCH=amd64 GOOS=windows go build -ldflags "-s -w" ./internal/app/gam
- run: GOARCH=amd64 GOOS=linux go build -ldflags "-s -w" .
- run: GOARCH=amd64 GOOS=windows go build -ldflags "-s -w" .
- run: zip -9 -r application-linux-amd64.zip gam
- run: zip -9 -r application-windows-amd64.zip gam.exe

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [1.1.1] - 2021-05-11

### Fixed
- Minor

## [1.1.0] - 2021-05-11

### Added
Expand Down
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

GOARCH=amd64 GOOS=linux go build -ldflags "-s -w" ./internal/app/gam
GOARCH=amd64 GOOS=windows go build -ldflags "-s -w" ./internal/app/gam
GOARCH=amd64 GOOS=linux go build -ldflags "-s -w" .
GOARCH=amd64 GOOS=windows go build -ldflags "-s -w" .

zip -9 -r application-linux-amd64.zip gam
zip -9 -r application-windows-amd64.zip gam.exe
2 changes: 1 addition & 1 deletion internal/app/gam/process.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func killProcess(pid int) {
cmd.Stdout = &out
err := cmd.Start()
if err == nil {
fmt.Println("Daemon stopped")
fmt.Println("Daemon stopped") //
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gam",
"version": "1.1.0",
"version": "1.1.1",
"description": "",
"main": "index.js",
"repository": {
Expand Down

0 comments on commit 414abcc

Please sign in to comment.