We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c119c2 commit 5804ae9Copy full SHA for 5804ae9
.github/workflows/build-images.yml
@@ -14,7 +14,10 @@ jobs:
14
steps:
15
- uses: actions/checkout@v2
16
- run: python3 -m venv build_images_venv
17
- - run: source build_images_venv/bin/activate
+ - name: Activate virtualenv
18
+ run: |
19
+ . .build_images_venv/bin/activate
20
+ echo PATH=$PATH >> $GITHUB_ENV
21
- run: python3 -mpip install -r requirements.txt
22
- run: git clone --depth=1 https://github.com/adafruit/Adafruit_Learning_System_Guides learn
23
- run: env LEARN_GUIDE_REPO=learn/ python3 create_requirement_images.py
0 commit comments