diff --git a/.github/workflows/agent.yml b/.github/workflows/agent.yml index 6d33f024e..863cb8a2a 100644 --- a/.github/workflows/agent.yml +++ b/.github/workflows/agent.yml @@ -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 \ No newline at end of file diff --git a/agent/agent/main.go b/agent/agent/main.go index 1ed53b29d..26544d129 100644 --- a/agent/agent/main.go +++ b/agent/agent/main.go @@ -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)