Fix release workflow

This commit is contained in:
2023-03-27 11:39:40 +02:00
parent 025b50ecf3
commit f7a2dc2d41

View File

@@ -9,7 +9,7 @@ permissions:
contents: write contents: write
env: env:
PYTHON_VERSION: "3.11" PYTHON_VERSION: 3.11
jobs: jobs:
test: test:
@@ -18,7 +18,7 @@ jobs:
os: [ubuntu-latest, windows-latest] os: [ubuntu-latest, windows-latest]
uses: ./.github/workflows/test.yml uses: ./.github/workflows/test.yml
with: with:
python-version: ${{ env.PYTHON_VERSION }} python-version: $PYTHON_VERSION
os: ${{ matrix.os }} os: ${{ matrix.os }}
build: build:
@@ -30,7 +30,7 @@ jobs:
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
name: Setup Python name: Setup Python
with: with:
python-version: ${{ env.PYTHON_VERSION }} python-version: $PYTHON_VERSION
- name: Install deps - name: Install deps
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
@@ -73,7 +73,7 @@ jobs:
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
name: Setup Python name: Setup Python
with: with:
python-version: ${{ env.PYTHON_VERSION }} python-version: $PYTHON_VERSION
- name: Install deps - name: Install deps
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip