Skip to content
This repository has been archived by the owner on Apr 6, 2024. It is now read-only.

Commit

Permalink
Merge pull request #27 from shipatlas/fixes_and_updates
Browse files Browse the repository at this point in the history
Fixes and updates
  • Loading branch information
itskingori authored Dec 21, 2022
2 parents 45e043b + 774022a commit 5b3a51b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
uses: wangyoucao577/go-release-action@v1.34
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
ldflags: -X "github.com/shipatlas/ecs-toolkit/cmd.versionTag=${{ env.VERSION }}"
extra_files: LICENSE.txt README.md
md5sum: true
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

## 1.0.0

* First prototype of the idea with deploy feature. Takes inputs as a config file
which allows you to:
First prototype of the idea with deploy feature. Takes inputs as a config file
which allows you to:

* Define all the services and tasks that make up an application in a concise
configuration file that's easy to grok at a glance i.e. `.ecs-toolkit.yml`,
Expand Down
4 changes: 2 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ func initConfig() {
viper.SetConfigType("yml")
viper.SetConfigName(".ecs-toolkit")
}
log.Infof("using config file: %s", rootCmdOptions.configFile)
log.Debugf("using config file: %s", rootCmdOptions.configFile)

// If a config file is found, read it in.
log.Infof("reading %s config file", viper.ConfigFileUsed())
log.Debugf("reading %s config file", viper.ConfigFileUsed())
if err := viper.ReadInConfig(); err != nil {
log.Fatalf("unable to read %s config file: %v", viper.ConfigFileUsed(), err)
}
Expand Down

0 comments on commit 5b3a51b

Please sign in to comment.