Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

master #162

Merged
merged 17 commits into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/publish-ryven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
create:
tags:
- '*'
workflow_dispatch:
jobs:
Build-and-Publish:
runs-on: ubuntu-latest
Expand All @@ -12,18 +13,19 @@ jobs:
with:
python-version: 3.x
architecture: x64
- name: Change directory to ryven-editor
run: cd ryven-editor
- name: Install pypa/build
run: python -m pip install build --user
- name: Build binary wheel and source tarball
run: python -m build --sdist --wheel --outdir dist/
working-directory: ./ryven-editor
- name: Publish distribution to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
password: ${{ secrets.GH_AC_RYVEN_TEST_PYPI_API_TOKEN }}
repository-url: https://test.pypi.org/legacy/
packages-dir: ryven-editor/dist/
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.GH_AC_RYVEN_PYPI_API_TOKEN }}
packages-dir: ryven-editor/dist/
12 changes: 7 additions & 5 deletions .github/workflows/publish-ryvencore-qt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
create:
tags:
- '*'
workflow_dispatch:
jobs:
Build-and-Publish:
runs-on: ubuntu-latest
Expand All @@ -12,18 +13,19 @@ jobs:
with:
python-version: 3.x
architecture: x64
- name: Change directory to ryvencore-qt
run: cd ryvencore-qt
- name: Install pypa/build
run: python -m pip install build --user
- name: Build binary wheel and source tarball
run: python -m build --sdist --wheel --outdir dist/
working-directory: ./ryvencore-qt
- name: Publish distribution to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
password: ${{ secrets.GH_AC_RCQT_TEST_PYPI_API_TOKEN }}
repository-url: https://test.pypi.org/legacy/
packages-dir: ryvencore-qt/dist/
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.GH_AC_RCQT_PYPI_API_TOKEN }}
packages-dir: ryvencore-qt/dist/
2 changes: 1 addition & 1 deletion ryven-editor/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ryven
version = 3.4.0a2
version = 3.4.0
author = Leon Thomm
author_email = l.thomm@mailbox.org
description = Flow-based visual scripting for Python
Expand Down
2 changes: 1 addition & 1 deletion ryvencore-qt/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ryvencore-qt
version = v0.4.0a2
version = v0.4.0
author = Leon Thomm
author_email = l.thomm@mailbox.org
description = Qt frontend for ryvencore; Library for building Visual Node Editors
Expand Down
Loading