Skip to content

Commit

Permalink
Add Python version to screenshot action
Browse files Browse the repository at this point in the history
  • Loading branch information
wfondrie committed Dec 11, 2023
1 parent 6f77c4d commit f2fa7f9
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/screenshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install your custom tools
run: pip install .
run: |
python -m pip install --upgrade pip
pip install .
- name: Generate terminal images with rich-codex
uses: ewels/rich-codex@v1
Expand Down

0 comments on commit f2fa7f9

Please sign in to comment.