Skip to content

Commit 5804ae9

Browse files
committed
fix venv activate
1 parent 0c119c2 commit 5804ae9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: .github/workflows/build-images.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616
- run: python3 -m venv build_images_venv
17-
- run: source build_images_venv/bin/activate
17+
- name: Activate virtualenv
18+
run: |
19+
. .build_images_venv/bin/activate
20+
echo PATH=$PATH >> $GITHUB_ENV
1821
- run: python3 -mpip install -r requirements.txt
1922
- run: git clone --depth=1 https://github.com/adafruit/Adafruit_Learning_System_Guides learn
2023
- run: env LEARN_GUIDE_REPO=learn/ python3 create_requirement_images.py

0 commit comments

Comments
 (0)