PNG file icon. Find libraries one level deeper from wildcard #51
Workflow file for this run
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
# SPDX-FileCopyrightText: Copyright (c) 2019 Anthony Sottile | |
# | |
# SPDX-License-Identifier: MIT | |
name: build-images | |
on: | |
pull_request: | |
push: | |
jobs: | |
build-images: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: python3 -m venv build_images_venv | |
- name: Activate virtualenv | |
run: | | |
. build_images_venv/bin/activate | |
echo PATH=$PATH >> $GITHUB_ENV | |
- run: python3 -mpip install -r requirements.txt | |
- run: git clone --depth=1 https://github.com/adafruit/Adafruit_Learning_System_Guides learn | |
- run: env LEARN_GUIDE_REPO=learn/ python3 create_requirement_images.py | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: images | |
path: generated_images |