Skip to content

Commit

Permalink
Use correct environment variable name for OPENAI_API_KEY
Browse files Browse the repository at this point in the history
  • Loading branch information
hallipr committed Jun 4, 2024
1 parent fa4cc24 commit 5b1913f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
--filter="TestCategory~${{ github.event_name == 'pull_request' && 'Offline' || 'Online' }}"
--logger "trx;LogFileName=${{github.workspace}}/artifacts/test-results/full.trx"
env:
SECRET_VALUE: ${{ secrets.OPENAI_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

- name: Pack
run: dotnet pack
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
--filter="TestCategory~Online"
--logger "trx;LogFileName=${{github.workspace}}/artifacts/test-results/full.trx"
env:
SECRET_VALUE: ${{ secrets.OPENAI_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

# Pack the client nuget package and include urls back to the repository and release tag
- name: Pack
Expand Down

0 comments on commit 5b1913f

Please sign in to comment.