Skip to content
This repository has been archived by the owner on Sep 11, 2022. It is now read-only.

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Dusan Malusev <[email protected]>
  • Loading branch information
Dusan Malusev committed Mar 12, 2022
1 parent 866ca68 commit 15531ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ jobs:
unzip -d go-collect /tmp/go-collect.zip
docker-compose -f /tmp/go-collect/bin/docker-compose.yml up --force-recreate -d
cp /tmp/go-collect/bin/config.yml /etc/go-collect/config.yml
cp /tmp/go-collect/bin/go-collect /bin/collect
chmod +x /bin/collect
cp /tmp/go-collect/bin/go-collect /bin/go-collect
chmod +x /bin/go-collect
cp /tmp/go-collect/bin/go-collect.service /usr/lib/systemd/system/go-collect.service
systemctl daemon-reload
systemctl enable --now go-collect
Expand Down
1 change: 1 addition & 0 deletions backend/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ var (

func main() {
flag.StringVar(&environment, "env", "development", "Server Configuration")
flag.Parse()

env := config.ParseEnvironment(environment)

Expand Down

0 comments on commit 15531ee

Please sign in to comment.