Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
lsbardel committed Jan 28, 2024
1 parent 8c1e9c1 commit c865457
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,22 @@ jobs:
- name: run tests
run: make tests
- name: upload coverage reports to codecov
if: matrix.python-version == '3.11'
if: matrix.python-version == '3.12'
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./build/coverage.xml
- name: build book
if: ${{ matrix.python-version == '3.11' }}
if: ${{ matrix.python-version == '3.12' }}
run: make book
- name: publish book
if: ${{ matrix.python-version == '3.11' }}
if: ${{ matrix.python-version == '3.12' }}
run: make publish-book
- name: publish
if: ${{ matrix.python-version == '3.11' && github.event.head_commit.message == 'release' }}
if: ${{ matrix.python-version == '3.12' && github.event.head_commit.message == 'release' }}
run: make publish
- name: create github release
if: ${{ matrix.python-version == '3.12' && github.event.head_commit.message == 'release' }}
if: ${{ matrix.python-version == '3.13' && github.event.head_commit.message == 'release' }}
uses: ncipollo/release-action@v1
with:
artifacts: "dist/*"
Expand Down
2 changes: 1 addition & 1 deletion notebooks/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

title: Quantflow library
author: Quantmind Team
copyright: "2023"
copyright: "2024"
logo: assets/quantflow-light.svg

# Force re-execution of notebooks on each build.
Expand Down

0 comments on commit c865457

Please sign in to comment.