Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
infeeeee committed Mar 27, 2023
1 parent f7a2dc2 commit 7ec513f
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,14 @@ on:
permissions:
contents: write

env:
PYTHON_VERSION: 3.11

jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
uses: ./.github/workflows/test.yml
with:
python-version: $PYTHON_VERSION
python-version: ${{ vars.PYTHON_VERSION}}
os: ${{ matrix.os }}

build:
Expand All @@ -30,7 +27,7 @@ jobs:
- uses: actions/setup-python@v4
name: Setup Python
with:
python-version: $PYTHON_VERSION
python-version: ${{ vars.PYTHON_VERSION}}
- name: Install deps
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -73,7 +70,7 @@ jobs:
- uses: actions/setup-python@v4
name: Setup Python
with:
python-version: $PYTHON_VERSION
python-version: ${{ vars.PYTHON_VERSION}}
- name: Install deps
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 7ec513f

Please sign in to comment.