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

Auto release workflow #714

Merged
merged 1 commit into from
Mar 26, 2024
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: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Release
on:
release:
types: [published]
workflow_dispatch:

jobs:
release:
uses: biolab/orange-ci-cd/.github/workflows/release.yml@master
with:
pure-python: true
secrets: inherit
14 changes: 3 additions & 11 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,26 +44,18 @@ BUILD PACKAGES

Continue only if conda-build ended without errors!

Push it to github, push also tags:
Push it to GitHub, push also tags:

git push upstream master
git push upstream --tags

Now, other packages. First build help:

cd doc && make htmlhelp && cd ..

Build pypi packages:

python setup.py sdist bdist_wheel
Create a release on GitHub. Packages should be built and uploaded to PyPi automatically.


UPLOAD PACKAGES
---------------

Upload to pypi:

twine upload dist/packagenames (there are two, .tar.gz and .whl).
Package is uploaded to PyPi automatically.

Copy the built conda package to the correct static/conda/noarch folder in
the quasar.codes web page. Add the new files and then either push or
Expand Down
Loading