Skip to content

Commit

Permalink
fix: don't build reports in release step
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed Oct 20, 2020
1 parent a637efd commit 48421c8
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,28 +46,20 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version: [3.8]
node-version: [10]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Get tag
id: tag
run: echo "::set-output name=version::${GITHUB_REF#refs/tags/}"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install twine
- name: Generate the MEMOTE report
shell: bash
run: make reports
- name: Build package
run: python setup.py sdist bdist_wheel
- name: Check the package
Expand All @@ -87,7 +79,7 @@ jobs:
release_name: ${{ github.ref }}
body: >
Please see
https://github.com/${{ github.repository }}/blob/${{ steps.tag.outputs.version }}/CHANGELOG.rst
https://github.com/${{ github.repository }}/blob/${{ steps.tag.outputs.version }}/HISTORY.rst
for the full release notes.
draft: false
prerelease: false
Expand Down

0 comments on commit 48421c8

Please sign in to comment.