From d72bc894b28486ad4f16804901becaf3f7dc81ad Mon Sep 17 00:00:00 2001 From: Peter Bull Date: Mon, 25 Oct 2021 17:55:42 -0700 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 47b2a115..8577f9cd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,6 +18,12 @@ jobs: with: python-version: 3.8 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements-dev/docs.txt + pip install -e . + - name: Check that versions match id: version run: | @@ -27,12 +33,6 @@ jobs: [ ${{ github.event.release.tag_name }} == "v$PACKAGE_VERSION" ] || { exit 1; } echo "::set-output name=major_minor_version::v${PACKAGE_VERSION%.*}" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements-dev/docs.txt - pip install -e . - - name: Build package run: | make dist