diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 53c69456..f7998bfa 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -31,6 +31,9 @@ jobs: id: version run: echo VERSION=$(git describe --exact-match --tags | sed 's/^v//') >> $GITHUB_OUTPUT + - name: Install dependencies + run: pip install build wheel + - name: Build packages run: make packages VERSION=${{ steps.version.outputs.VERSION }} @@ -62,9 +65,6 @@ jobs: id: version run: echo VERSION=$(git describe --exact-match --tags | sed 's/^v//') >> $GITHUB_OUTPUT - - name: Install dependencies - run: pip install build wheel - - name: Put version into package manifests run: make update-package-versions VERSION=${{ steps.version.outputs.VERSION }}