Skip to content

Commit 82eeacf

Browse files
adding publish
1 parent 6e51f4f commit 82eeacf

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/publish.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Publish
2+
3+
on:
4+
release:
5+
types:
6+
- created
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Set up Python 3.10
14+
uses: actions/setup-python@v2
15+
- name: Install Poetry
16+
run: |
17+
python -m pip install --upgrade poetry wheel
18+
- name: Install dependencies
19+
run: |
20+
poetry install
21+
- name: Publish
22+
env:
23+
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI }}
24+
run: |
25+
poetry config pypi-token.pypi $POETRY_PYPI_TOKEN_PYPI
26+
poetry build
27+
poetry publish

flowpipe_editor/flowpipe_editor_widget.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ class FlowpipeNode(BaseNode):
1818
"""Flowpipe node for NodeGraphQt."""
1919
__identifier__ = "flowpipe"
2020
NODE_NAME = "FlowpipeNode"
21-
fp_node = None
2221

2322
def __init__(self, **kwargs):
2423
"""Initialize the FlowpipeNode."""

0 commit comments

Comments
 (0)