chore: Update Docker configuration for Copilot debugging

This commit updates the Docker configuration in the `.github/workflows/reliability-copilot.yml` file to fix the environment variable values for `ONEUPTIME_REPOSITORY_SECRET_KEY` and `CODE_REPOSITORY_PASSWORD`. The values are now properly enclosed in double quotes to ensure consistency and prevent any issues with special characters. This change ensures the correct configuration for running the reliability copilot workflow.
This commit is contained in:
Simon Larsen 2024-07-15 14:13:00 -06:00
parent e9f0510d3c
commit e6bc8e4b30
No known key found for this signature in database
GPG Key ID: 96C5DCA24769DBCA

View File

@ -24,9 +24,9 @@ jobs:
- name: Run Copilot
run: |
docker run --rm \
-e ONEUPTIME_URL='https://test.oneuptime.com' \
-e ONEUPTIME_REPOSITORY_SECRET_KEY='${{ secrets.COPILOT_ONEUPTIME_REPOSITORY_SECRET_KEY }}' \
-e CODE_REPOSITORY_PASSWORD='${{ github.token }}' \
-e CODE_REPOSITORY_USERNAME='simlarsen' \
-e ONEUPTIME_LLM_SERVER_URL='http://57.128.112.160:8547' \
-e ONEUPTIME_URL="https://test.oneuptime.com" \
-e ONEUPTIME_REPOSITORY_SECRET_KEY="${{ secrets.COPILOT_ONEUPTIME_REPOSITORY_SECRET_KEY }}" \
-e CODE_REPOSITORY_PASSWORD="${{ github.token }}" \
-e CODE_REPOSITORY_USERNAME="simlarsen" \
-e ONEUPTIME_LLM_SERVER_URL="http://57.128.112.160:8547" \
--net=host oneuptime/copilot:test