Skip to content

Commit

Permalink
Working on new pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
emilhe committed Oct 7, 2023
1 parent cfc8615 commit 2b7542e
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,14 @@ jobs:
- run: poetry --version
- name: Install dependencies
run: poetry install
- name: Build and publish
- name: Build and publish to npm
run: |
poetry run npm install | echo "Ignore npm install error"
poetry run npm run build
poetry run npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Build and publish to pypi
run: |
poetry build
poetry publish --username=${{ secrets.PYPI_USERNAME }} --password=${{ secrets.PYPI_PASSWORD }}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to this project will be documented in this file.

## [1.0.4] - 07-10-23

### Added

- Publishing to npm added to CICD pipeline. Fixes [#284](https://github.com/emilhe/dash-extensions/issues/284)

### Changed

- Dependencies updated
- A few bugfixes

### Added

- Added `SerializationTransform` and `DataclassTransform`

## [1.0.3] - 31-07-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-extensions",
"version": "1.0.3",
"version": "1.0.4rc6",
"description": "Extensions for Plotly Dash.",
"main": "build/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dash-extensions"
version = "1.0.3"
version = "1.0.4rc6"
description = "Extensions for Plotly Dash."
authors = ["emher <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 2b7542e

Please sign in to comment.