diff --git a/.github/workflows/push_master.yml b/.github/workflows/push_master.yml index 49449d7..60b1cb5 100644 --- a/.github/workflows/push_master.yml +++ b/.github/workflows/push_master.yml @@ -64,6 +64,15 @@ jobs: with: submodules: 'recursive' + - name: Download version + uses: actions/download-artifact@v4 + with: + name: VERSION + path: . + + - name: Update version + run: sed -i "s/^version.*\$/version = \"$(cat VERSION)\"/g" pyproject.toml + - name: Build wheels uses: pypa/cibuildwheel@v2.21.3