Update streamlit_app.py #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Use OpenAI Secret | |
on: [push] | |
jobs: | |
access-secret: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Access OpenAI Key | |
run: echo "The secret is ${{ secrets.OPENAI_KEY }}" | |
env: | |
OPENAI_KEY: ${{ secrets.OPENAI_KEY }} |