Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
pip install requests google-cloud-storage pyyaml

$env:GCP_KEY = '${{ secrets.GCP_KEY }}'
cd ${{ github.workspace }}/.github/scripts; & python 'agent-deploy.py' $env:DEPLOY_ENV
cd ${{ github.workspace }}/.github/scripts; & 'C:\Program Files\Python312\python.exe' 'agent-deploy.py' $env:DEPLOY_ENV

cd ${{ github.workspace }}; Remove-Item -Path "./*" -Recurse -Force

2 changes: 1 addition & 1 deletion agent/agent/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func main() {
h.FatalError("Failed to get current path: %v", err)
}

// Configuring log saving
// Configuring log saving
var logger = utils.CreateLogger(filepath.Join(path, "logs", configuration.SERV_LOG))
defer logger.Close()
log.SetOutput(logger)
Expand Down