Skip to content

Commit

Permalink
Switch from script variables to context variables
Browse files Browse the repository at this point in the history
  • Loading branch information
DevilXD committed Jan 19, 2024
1 parent 0b6deeb commit d70e3b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "$PYTHON_VERSION"
python-version: ${{env.PYTHON_VERSION}}

- name: Set up Python virtual environment
run: |
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "$PYTHON_VERSION"
python-version: ${{env.PYTHON_VERSION}}

- name: Install system dependencies
run: |
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "$PYTHON_VERSION"
python-version: ${{env.PYTHON_VERSION}}

- name: Append git revision to project version
run: |
Expand Down

0 comments on commit d70e3b8

Please sign in to comment.