Skip to content

Commit

Permalink
echo env var
Browse files Browse the repository at this point in the history
  • Loading branch information
spboyer committed Apr 26, 2024
1 parent e924ede commit a3f72a0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/azure-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ jobs:
AI__OPENAI__EMBEDDINGNAME: ${{ vars.EMBEDDINGNAME }}
AI__OPENAI__CHATMODEL: ${{ vars.CHATMODEL }}
steps:

- name: Iterate and Echo Environment Variables
run: |
for var in $(env | awk -F= '{print $1}'); do
echo "$var=${!var}"
done
- name: Checkout
uses: actions/checkout@v4

Expand Down

0 comments on commit a3f72a0

Please sign in to comment.