Skip to content

Commit

Permalink
ci: Fix release version check
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiefMaster committed Mar 30, 2024
1 parent eb5bb14 commit b257897
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
cache-dependency-path: |
requirements.txt
requirements.dev.txt
- name: Install build deps 🔧
run: |
sudo apt-get install libpq-dev
pip install --user -U pip setuptools wheel
- name: Check version 🔍
run: python .github/utils/check_version.py "${GITHUB_REF#refs/tags/v}"
- name: Extract changelog 📜
Expand All @@ -32,11 +36,8 @@ jobs:
name: Setup Node
with:
node-version: 18.x
- name: Install build deps 🔧
run: |
sudo apt-get install libpq-dev
pip install --user -U pip setuptools wheel
pip install --user -e '.[dev]'
- name: Install Indico + Python deps 🔧
run: pip install --user -e '.[dev]'
- name: Install npm deps ☕
run: npm ci
- name: Build wheel 🏗
Expand Down

0 comments on commit b257897

Please sign in to comment.