Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pjbull authored Oct 26, 2021
1 parent 77daef9 commit d72bc89
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down

0 comments on commit d72bc89

Please sign in to comment.