Update cosmosdb_ci_cd.yml #6
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: Cosmos DB CI/CD Pipeline | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install azure-cosmos | |
pip install python-dotenv | |
- name: Set up environment variables | |
run: | | |
echo "HOST=$HOST" >> $GITHUB_ENV | |
echo "MASTER_KEY=$MASTER_KEY" >> $GITHUB_ENV | |
- name: Run script | |
run: python run.py | |
env: | |
HOST: ${{ secrets.COSMOS_DB_HOST }} | |
MASTER_KEY: ${{ secrets.COSMOS_DB_MASTER_KEY }} |