Skip to content

Commit 4c4e903

Browse files
add blob env
1 parent 04f3bd0 commit 4c4e903

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/test_actions.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
environment: MMI-Samples
2222
env:
2323
AZURE_AI_ENDPOINT: ${{ secrets.AZURE_CONTENT_UNDERSTANDING_ENDPOINT }}
24+
TRAINING_DATA_STORAGE_ACCOUNT_NAME: ${{ secrets.TRAINING_DATA_STORAGE_ACCOUNT_NAME }}
25+
TRAINING_DATA_CONTAINER_NAME: ${{ secrets.TRAINING_DATA_CONTAINER_NAME }}
26+
REFERENCE_DOC_STORAGE_ACCOUNT_NAME: ${{ secrets.REFERENCE_DOC_STORAGE_ACCOUNT_NAME }}
27+
REFERENCE_DOC_CONTAINER_NAME: ${{ secrets.REFERENCE_DOC_CONTAINER_NAME }}
2428

2529
steps:
2630
- name: Checkout Repo
@@ -38,6 +42,12 @@ jobs:
3842
pip install nbformat nbconvert jupyter ipykernel
3943
# python -m ipykernel install --user --name=python3
4044
45+
- name: Set TRAINING_DATA_PATH and REFERENCE_DOC_PATH with datetime
46+
run: |
47+
TS=$(date +'%Y%m%d_%H%M%S')
48+
echo "TRAINING_DATA_PATH=test_notebooks/training_data_${TS}" >> $GITHUB_ENV
49+
echo "REFERENCE_DOC_PATH=test_notebooks/reference_docs_${TS}" >> $GITHUB_ENV
50+
4151
- name: List notebook files
4252
run: ls -la notebooks
4353

0 commit comments

Comments
 (0)